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