blob: b170ef995c1e924372f3c3ef8b637376b6b6b533 [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() {}