blob: 7006c08ab8222276b04c9fc65e420af1bf62d0c5 [file] [log] [blame]
mixin M on Object {
void mixinMethod() {}
}
enum E with M {
e1,
e2,
e3;
}
enum F {
f1,
f2,
f3,
}
enum G {
g1,
g2,
g3,
;
const G();
}