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