Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
bug30620_b.dart.textual_outline_modelled.expect
blob: edb63a451f65d2114ef70eb5a8f955bad82f3e1f [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
A
{
A
(
this
.
foo
);
bool
operator
==(
Object
other
)
=>
other
is
A
&&
other
.
foo
==
this
.
foo
&&
other
.
foo
==
this
.
foo
;
final
String
foo
;
}
main
()
{}