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