blob: 3a8f16314fe4c1c447ee9d8eadfa817c65808098 [file] [log] [blame]
class C {
int m();
dynamic noSuchMethod(Invocation i) => "C";
}
mixin M {
int m();
dynamic noSuchMethod(Invocation i) => "M";
}
class MA = Object with M;
throws(void Function() f) {}
main() {}