mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 08:19:05 +07:00
21 lines
378 B
Java
21 lines
378 B
Java
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: ik
|
|
* Date: 28.05.2003
|
|
* Time: 16:50:51
|
|
* To change this template use Options | File Templates.
|
|
*/
|
|
public class TestGenericMethodOverloading1 {
|
|
class A<T extends List>{
|
|
public boolean equals(T t){
|
|
return false;
|
|
}
|
|
}
|
|
{
|
|
new A().<ref>equals(new Object());
|
|
}
|
|
}
|