Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
bug30620_b.dart.textual_outline.expect
blob: d6b5ee4ca0e544130c352a3aa701e19a94cac59d [
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
&&
other
.
foo
==
this
.
foo
;
}
main
()
{}