test/tools/javac/defaultMethods/Neg14.java

Tue, 06 Nov 2012 14:45:27 +0000

author
mcimadamore
date
Tue, 06 Nov 2012 14:45:27 +0000
changeset 1396
9b85813d2262
parent 1393
d7d932236fee
child 1415
01c9d4161882
permissions
-rw-r--r--

8002286: Regression: Fix for 8000931 causes a JCK test failure
Summary: Wrong type used as 'site' in Resolve.resolveMethod
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @summary check that a class cannot have two sibling interfaces with a default and abstract method
     4  * @compile/fail/ref=Neg14.out -XDallowDefaultMethods -XDrawDiagnostics Neg14.java
     5  */
     6 class Neg14 {
     7     interface IA { int m(); }
     8     interface IB { default int m() { return 1; } }
    10     abstract class AB implements IA, IB {}
    11 }

mercurial