blob: bc850563f51addc92967c2c11f82d0325bc3d02e [file] [log] [blame]
class C {
noSuchMethod(Invocation i) => "C";
String foo();
}
mixin M {
noSuchMethod(Invocation i) => "M";
String foo();
}
class MA = Object with M;
void main() {}