blob: 43c5cc73a752661fe96888ef641a0d7273fad758 [file] [log] [blame]
public enum E {
A,
B {
@Override
void bar() {
}
};
void bar(){}
}