blob: 7f2c61591ac537cac032e833c1567a0d981ec8e2 [file] [log] [blame]
// @dart = 2.9
abstract class I1 {
void foo();
}
abstract class I2 {
void foo();
}
class M implements I1, I2 {
dynamic noSuchMethod(Invocation i) => null;
}
main() {}