test/tools/javac/defaultMethods/Neg07.java

Sun, 04 Nov 2012 10:59:42 +0000

author
mcimadamore
date
Sun, 04 Nov 2012 10:59:42 +0000
changeset 1393
d7d932236fee
child 1415
01c9d4161882
permissions
-rw-r--r--

7192246: Add type-checking support for default methods
Summary: Add type-checking support for default methods as per Featherweight-Defender document
Reviewed-by: jjg, dlsmith

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @summary check that default overrides are properly type-checked
     4  * @compile/fail/ref=Neg07.out -XDallowDefaultMethods -XDrawDiagnostics Neg07.java
     5  */
     7 class Neg07 {
     8     interface I {
     9         default int m() { return 1; }
    10     }
    12     static class C1 {
    13         public void m() { } //incompatible return
    14     }
    16     static class C2 extends C1 implements I { }
    18     static class C3 implements I {
    19         public void m() { } //incompatible return
    20     }
    21 }

mercurial