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