Sign in
dart
/
sdk
/
04e11b83c00d0673bb06a021a541e3820ef2d29e
/
.
/
pkg
/
front_end
/
testcases
/
general
/
const_constructor.dart.textual_outline_modelled.expect
blob: c3e0a967ca3df76afe5602099e60383893c019ce [
file
] [
log
] [
blame
]
class
Class
extends
Super
{
const
Class
(
super
.
field1
,
this
.
field2
);
final
int
field2
;
}
class
Super
{
const
Super
(
this
.
field1
);
final
int
field1
;
}