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