Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
field_refers_to_static_getter.dart.textual_outline.expect
blob: 1b6c30499962ac88ee13346ae562f3d43cb0a523 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
C
{
final
x
=
_x
;
static
int
get
_x
=>
null
;
}
main
()
{}