langtools/test/tools/javac/enum/EnumPublicConstructor.java
author sogoel
Wed, 02 Jul 2014 13:29:58 -0700
changeset 25309 dcd9a7e19669
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8044864: .out files for enum tests in tools/javac dir - part 1 Reviewed-by: jjg

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

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

    private int r, g, b;
    public EnumPublicConstructor(int r, int g, int b) {
        this.r = r;
        this.g = g;
        this.b = b;
    }
}