jdk-24/test/langtools/tools/javac/InterfaceObjectIncompatibility.java
2017-09-12 19:03:39 +02:00

16 lines
403 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4479164
* @summary Throws clauses incompatible with Object methods allowed in interfaces
* @author gafter
*
* @compile/fail/ref=InterfaceObjectIncompatibility.out -XDrawDiagnostics InterfaceObjectIncompatibility.java
*/
interface InterfaceObjectIncompatibility {
String toString() throws java.io.IOException;
int hashCode() throws Exception;
}