blob: fd419fa34f0487050b47dcde306f2cb22ae53e14 [file] [log] [blame]
mixin M on Object {
void mixinMethod() {}
}
class B {}
class C with M {}
class D = Object with M;