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