blob: 183736232a93d26f7a183b531ee6c90e69078140 [file] [log] [blame]
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>{}
}