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