Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_field_from_later_inferred_getter.dart.textual_outline.expect
blob: 7ab22b6c48d88ea63e97fcf743a2663a6aa360fe [
file
] [
log
] [
blame
]
library test
;
class
A
implements
B
{
var
x
;
}
abstract
class
B
implements
C
{
get
x
;
}
abstract
class
C
{
int
?
get
x
;
}
main
()
{}