blob: 26c3afd6047a7a055ddbae479d0a5ccd7f2ea5d2 [file] [log] [blame]
// @dart = 2.9
library test;
void expectTypeError(void callback()) {}
void expect(Object value, Object expected) {}
class B {
int f(int x) {}
}
abstract class I {
int f(covariant Object x);
}
class C extends B implements I {}
void g(C c) {}
void test(C c, I i) {}
main() {}