blob: 9ae8a309d8724da98848adc65612c997269ffab9 [file] [log] [blame]
abstract class I<T> {
T foo();
}
class M {
dynamic noSuchMethod(Invocation i) {}
}
class A extends Object with M implements I<int> {}
main() {}