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