Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
propagate_inference_transitively2.dart.textual_outline.expect
blob: 34c4748a1235108013765cca45c3e4a78305542c [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
A
{
int
x
=
42
;
}
class
B
{
A a
=
new
A
();
}
class
C
{
B b
=
new
B
();
}
class
D
{
C c
=
new
C
();
}
void
main
()
{}