Sign in
dart
/
sdk
/
7b34ecdb9d3f1ea76a21e28e51a1dba3b97b7015
/
.
/
pkg
/
front_end
/
testcases
/
super_parameters
/
simple.dart.textual_outline_modelled.expect
blob: ce8d86859fe289d1dec7c35e52174d5f6434c815 [
file
] [
log
] [
blame
]
class
A
{
A
(
this
.
foo
);
final
int
foo
;
}
class
B
extends
A
{
B
(
super
.
foo
);
}
main
()
{}