langtools/test/tools/javac/OverridePosition.java
author alanb
Wed, 21 Aug 2013 09:59:12 +0100
changeset 19565 e1593e8a70ff
parent 6150 d055fa8ced62
permissions -rw-r--r--
8023351: Add TEST.groups in preparation to simplify rules in jdk/test/Makefile Reviewed-by: lancea, mduigou

/*
 * @test  /nodynamiccopyright/
 * @bug 4524388 4785453
 * @summary "attemping to assign weaker access" message doesn't give method line number
 * @author Neal Gafter
 *
 * @compile/fail/ref=OverridePosition.out -XDrawDiagnostics OverridePosition.java
 */

package T4524388;

interface Interface {
    void method();
}

class Testa implements Interface {
    void method() {}
}

class A {
    void method() {}
}

class B extends A implements Interface {
}