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