blob: fd7998bc6c4565128855abd4d3ab7245f096d3d0 [file] [log] [blame]
//4, 59 -> 4, 59 replaceAll == true, removeDeclaration == true
package p;
enum Letter { A, B, C { }; public static final Letter MAIN= A; }
class EnumRef {
Letter l= Letter.MAIN;
}