blob: 9bc6e47fefd294c28ab6146c682535050bcf47d7 [file] [log] [blame]
// @dart = 2.9
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() {}