blob: dfacdaa64a2ef34c2f83eb06fa4910f25655f146 [file] [log] [blame]
class I {
dynamic noSuchMethod(Invocation i) => null;
void foo();
}
mixin class M {
dynamic noSuchMethod(Invocation i) => null;
}
class A extends Object with M implements I {}
class B extends Object with M implements I {}
main() {}