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