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