Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
nnbd_mixed
/
hierarchy
/
covariant_equals.dart.textual_outline_modelled.expect
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
()
{}