commit: use DEFINE_LIST_SORT
[alt-git.git] / t / t4018 / java-method-return-generic-wildcard
blob96e9e5f2c14e35ad9ca32ce2495debd2a875ebe3
1 class MyExample {
2     public List<? extends Comparable> foo(String[] RIGHT) {
3         someMethodCall();
4         someOtherMethod()
5             .doThat();
6         // Whatever...
7         return Arrays.asList("ChangeMe");
8     }