mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 14:26:37 +07:00
14 lines
234 B
Java
14 lines
234 B
Java
|
|
import java.util.List;
|
|
|
|
public class TestGenericMethodOverloading1 {
|
|
class A<T extends List>{
|
|
public boolean equals(T t){
|
|
return false;
|
|
}
|
|
}
|
|
{
|
|
new A().<ref>equals(new Object());
|
|
}
|
|
}
|