git/t/t4018/java-method-return-generic-wildcard

class MyExample {
    public List<? extends Comparable> foo(String[] RIGHT) {
        someMethodCall();
        someOtherMethod()
            .doThat();
        // Whatever...
        return Arrays.asList("ChangeMe");
    }
}