blob: 49de95feb7576da0b879f0ab4e78662b6dc5b1be [file] [log] [blame]
library test;
abstract class A {
void set x(covariant Object value);
}
class B implements A {
Object x;
void f(covariant Object x) {}
}
class C<T> implements B {
T x;
void f(T x) {}
}
main() {}