mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:39:07 +07:00
11 lines
198 B
Java
11 lines
198 B
Java
public class TestGenericMethodOverloading2 {
|
|
class A<T>{
|
|
public boolean equals(T t){
|
|
return false;
|
|
}
|
|
}
|
|
{
|
|
new A().<caret>equals(new Object());
|
|
}
|
|
}
|