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