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