blob: 8d0614cc904284aee41fe8c839c0a460cf44c265 [file] [log] [blame]
// @dart = 2.9
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() {}