Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
rasta
/
issue_000081.dart.textual_outline_modelled.expect
blob: 71cc6e601dfc9c3ee6fe47996c21de743ea9c515 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
Base
{
int
hashCode
=
42
;
}
class
Sub
extends
Base
{
foo
()
{}
get
hashCode
=>
_hashCode
??=
super
.
hashCode
;
int
_hashCode
=
null
;
}
main
()
{}