Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
circularity-via-initializing-formal.dart.textual_outline_modelled.expect
blob: c9e87ae03a4f34142236ade156866322141e5e1d [
file
] [
log
] [
blame
]
// @dart = 2.9
class
C
{
C
.
_circular
(
this
.
f
);
var
f
=
new
C
.
_circular
(
null
);
}
main
()
{}
var
x
=
new
C
.
_circular
(
null
);