blob: 8241a0125f8f01e0f6feafb36a93802f60b5f7e5 [file] [log] [blame]
// @dart = 2.9
class I {
dynamic noSuchMethod(Invocation i) => null;
void foo();
}
class M {
dynamic noSuchMethod(Invocation i) => null;
}
class A extends Object with M implements I {}
class B extends Object with M implements I {}
main() {}