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