Sign in
dart
/
sdk
/
bce3dd4fe7422aa949d4130565efdba1a677093a
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
super_initializer.dart.textual_outline_modelled.expect
blob: f04a4dca1ce201b2048e5a6169d031267599e91b [
file
] [
log
] [
blame
]
library test
;
T f
<
T
>()
=>
throw
''
;
class
B
{
B
(
int
x
);
}
class
C
extends
B
{
C
()
:
super
(
f
());
}
main
()
{}