Sign in
dart
/
sdk.git
/
cd65076031d67dde752af5a4b8fe0224f9d2b5fb
/
.
/
pkg
/
front_end
/
testcases
/
inference_new
/
field_inference_circularity.dart.textual_outline.expect
blob: fa0576a937aa44436ed0e51795c69bee3000c5cc [
file
] [
log
] [
blame
]
library test
;
class
A
{
var
x
=
()
=>
new
B
().
x
;
var
y
=
()
=>
new
B
().
x
;
}
class
B
extends
A
{
var
x
;
var
y
;
}
main
()
{}