blob: b704cbb35ba6aa4dd923b434fb37a259f932dbd6 [file] [log] [blame]
library test;
class B {
void f(int x) {}
}
abstract class I<T> {
void f(T x);
}
mixin M {}
class C = B with M implements I<int>;
void g1(C c) {}
void g2(I<num> i) {}
void test() {}
void main() {}