Sign in
dart
/
sdk
/
c4962efa659743cf9fb395c25d69b86cdb5fcfd5
/
.
/
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
;
}