Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
generic_methods_infer_generic_function_return_type.dart.textual_outline.expect
blob: fe58fcb12b38045acc476e04c537249d8a0049ae [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
C
<
T
>
extends
D
<
T
>
{
f
<
U
>(
x
)
{}
}
class
D
<
T
>
{
F
<
U
>
f
<
U
>(
U u
)
=>
null
;
}
typedef
V F
<
V
>();
main
()
{}