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