Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
generic_methods_infer_generic_function_return_type.dart.textual_outline.expect
blob: 183a5c1215ec778dab9a8eb3258a156b371683ca [
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
V F
<
V
>();
main
()
{}