blob: e3a2ca79730bdcb7ca84cbf449f5593dc43c3fce [file] [log] [blame]
package test;
public enum EnumWithSpecializedEntry {
E1,
E2 {
String foo() {
return name();
}
};
static class Nested {}
}