langtools/test/tools/javac/enum/EnumProtectedConstructor.java
author jlahoda
Thu, 09 Oct 2014 10:08:52 +0200
changeset 26993 513b2cae81c3
parent 25309 dcd9a7e19669
permissions -rw-r--r--
8057652: Request to improve error messages for labeled declarations Summary: Parse labeled statements as block statements to improve error recovery for labeled declarations; related cleanup. Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 5009601
 * @summary enum constructors cannot be declared public or protected
 * @author Joseph D. Darcy
 *
 * @compile/fail/ref=EnumProtectedConstructor.out -XDrawDiagnostics EnumProtectedConstructor.java
 */

enum EnumProtectedConstructor {
    RED(255, 0, 0),
    GREEN(0, 255, 0),
    BLUE(0, 0, 255);

    private int r, g, b;
    protected EnumProtectedConstructor(int r, int g, int b) {
        this.r = r;
        this.g = g;
        this.b = b;
    }
}