Files
2013-09-20 12:11:57 +04:00

8 lines
206 B
Java

class C {
void foo(){}
}
class D extends C{
<error descr="'foo()' in 'D' clashes with 'foo()' in 'C'; both methods have same erasure, yet neither hides the other">static <T> void foo()</error>{}
}