Sign in
dart
/
sdk
/
1114d0c30f5a5b92f312d2e02c9d52324bd5dcad
/
.
/
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
()
{}