Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
field_refers_to_static_getter.dart.textual_outline_modelled.expect
blob: 4c494df20e559cf128f1606f746cc13b8953d1a1 [
file
] [
log
] [
blame
]
library test
;
class
C
{
final
x
=
_x
;
static
int
get
_x
=>
throw
''
;
}
main
()
{}