langtools/test/tools/javac/defaultMethods/Neg14.java
author jfranck
Tue, 10 Sep 2013 13:47:51 +0200
changeset 19934 1d8232b1aa18
parent 14547 86d8d242b0c4
permissions -rw-r--r--
8005222: Fixed bugs should have tests with bugid in @bug tag Reviewed-by: jfranck, jjg Contributed-by: Andreas Lundblad <andreas.lundblad@oracle.com>

/* @test /nodynamiccopyright/
 * @bug 7192246
 * @summary check that a class cannot have two sibling interfaces with a default and abstract method
 * @compile/fail/ref=Neg14.out -XDrawDiagnostics Neg14.java
 */
class Neg14 {
    interface IA { int m(); }
    interface IB { default int m() { return 1; } }

    abstract class AB implements IA, IB {}
}