blob: f72209660df796fe50aeeb50636e69e9de942f5a [file] [log] [blame]
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() {}