jdk-24/langtools/test/tools/javac/generics/InheritanceConflict3.java
2015-05-15 16:53:42 -07:00

19 lines
347 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4984158
* @summary two inherited methods with same signature
* @author darcy
*
* @compile/fail/ref=InheritanceConflict3.out -XDrawDiagnostics InheritanceConflict3.java
*/
package inheritance.conflict3;
class X1<T> {
int f(T t) { throw null; }
void f(Object o) {}
}
class X2 extends X1 {
}