mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
11 lines
262 B
Java
11 lines
262 B
Java
|
|
import java.util.Comparator;
|
|
|
|
class MyTest<T> {
|
|
{
|
|
create<error descr="'create(java.util.Comparator<T>)' in 'MyTest' cannot be applied to '(java.util.Comparator<T>)'">(Comparator.naturalOrder())</error>;
|
|
}
|
|
|
|
static <T> void create(Comparator<T> c) {}
|
|
}
|