blob: b63fd0c4ada1d37feeb7bfe814083471e3a7f0db [file] [log] [blame]
// @dart = 2.9
library test;
class B {
void f(covariant int x, int y) {}
}
abstract class I {
void f(int x, Object y);
}
abstract class C extends B implements I {}
void main() {}