blob: 2fe43ab758679f90b051411e30186fe9ced9445d [file] [log] [blame]
package enums;
public enum OurEnumWithInitializedConstants {
A(0) {
},
B(1) {
void foo (){}
},
C(new OurBaseInterface() {}) {
void foo () {}
}
}