blob: cfe571aa6248e5f580ff2f4194ae88167611151d [file] [log] [blame]
class A {
bool operator ==(covariant A other) => true;
}
class B extends A {
bool operator ==(other) => true;
}
class C<T> {
bool operator ==(covariant C<T> other) => true;
}
class D extends C<int> {}
main() {}
test(A a, B b, C c_dynamic, C<int> c_int, C<String> c_string, D d) {}