Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
primary_constructors
/
field_initializers.dart.textual_outline.expect
blob: 540fbce2e9902fae49416231bb1636a5ab44f57e [
file
]
class
C0
{
int
b
;
final
int
c
;
int
d
;
int
e
;
int
f
;
int
g
=
42
;
C0
(
int
a
,
this
.
b
,
this
.
c
)
:
d
=
a
,
e
=
b
,
f
=
c
;
}
class
C1
(
int
a
,
var
int
b
,
final
int
c
)
{
int
d
=
a
;
int
e
=
b
;
int
f
=
c
;
int
g
=
42
;
}