2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-02 20:29:58 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 5009601
|
|
|
|
* @summary enum constructors cannot be declared public or protected
|
|
|
|
* @author Joseph D. Darcy
|
|
|
|
*
|
2014-07-02 20:29:58 +00:00
|
|
|
* @compile/fail/ref=EnumProtectedConstructor.out -XDrawDiagnostics EnumProtectedConstructor.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|