blob: d0d4257f4f9abda9efab00dbe948cfa0cf90d2e8 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4984158
* @summary two inherited methods with same signature
* @author gafter, Maurizio Cimadamore
*
* @compile/fail/ref=InheritanceConflict.out -XDrawDiagnostics InheritanceConflict.java
*/
package inheritance.conflict;
class A<T> {
void f(String s) {}
}
class B<T> extends A<T> {
void f(T t) {}
}
class C extends B<String> {
}