blob: a0211e474cdf51bfea9a0b9918162599a63dc995 [file] [log] [blame]
library test;
typedef F<T>(T x);
class C {
void f(num x) {}
}
class D extends C {
void f(covariant int x) {}
}
class E extends D {
void f(int x) {}
}
void g1(C c) {}
F<num> g2(C c) {}
test() {}
main() {}