Sign in
dart
/
sdk.git
/
3b718daac6f227b77ccb38fd35c1d89041feabc5
/
.
/
pkg
/
front_end
/
testcases
/
general
/
const_constructor.dart.textual_outline.expect
blob: 1047717da53ae4b096b40e63feb4b6524fe2e3f9 [
file
] [
log
] [
blame
]
class
Super
{
final
int
field1
;
const
Super
(
this
.
field1
);
}
class
Class
extends
Super
{
final
int
field2
;
const
Class
(
super
.
field1
,
this
.
field2
);
}