mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
11 lines
281 B
Java
11 lines
281 B
Java
import java.util.Comparator;
|
|
|
|
class MyTest {
|
|
void foo(final Ordering<Comparable> natural){
|
|
compound(natural);
|
|
}
|
|
<U extends String> Ordering<U> compound(Comparator<? super U> secondaryComparator) { return null; }
|
|
}
|
|
abstract class Ordering <T> implements Comparator<T> {}
|
|
|