blob: 492a2fd3edd9c691e6f86e7574cd8d1b19c017b1 [file] [log] [blame]
@SuppressWarnings("all") // Check for crashes.
public class CrazyEnum {
private enum MyEnum {
ENUM_CONST1 {
private final String s = method();
private String method() {
return "hello";
}
},
ENUM_CONST2 {
private final String s = this.method();
private String method() {
return "hello";
}
}
}
}