author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 24797 | 850ebd4d80a7 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 4041948 * @summary javac previously allowed interfaces to inherit methods with * inconsistent return types. * @author turnidge * * @compile/fail/ref=InconsistentReturn.out -XDrawDiagnostics InconsistentReturn.java */ interface I1{ int f(); } interface I2 { void f() ; } // error: Return types conflict. interface InconsistentReturn extends I1,I2 { }