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