Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
generic_methods_infer_generic_function_parameter_type.dart.textual_outline.expect
blob: d011015a14d2dff5c865043bcdbe09cb245cefef [
file
] [
log
] [
blame
]
library test
;
class
C
<
T
>
extends
D
<
T
>
{
f
<
U
>(
x
)
=>
throw
''
;
}
class
D
<
T
>
{
F
<
U
>
f
<
U
>(
U u
)
=>
throw
''
;
}
typedef
void
F
<
V
>(
V v
);
main
()
{}