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