jdk-24/langtools/test/tools/javac/InterfaceObjectIncompatibility.java
2014-09-05 16:51:39 -07: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;
}