blob: 55fc62b85ba9e5e3ffa63494744b43ff211faa28 [file] [log] [blame]
//10, 21 -> 10, 21 replaceAll == true, removeDeclaration == true
package p;
class Test {
private enum Color {
PINK, YELLOW;
final static Color CORPORATE_COLOR= Color.PINK;
}
private enum Box {
FIRST(Color.CORPORATE_COLOR);
public Box(Color c) {}
}
Color c= Color.CORPORATE_COLOR;
}