Sign in
dart
/
sdk
/
4e8a4a3b44074f6ab9038a89c6dba5ca831f624c
/
.
/
pkg
/
front_end
/
testcases
/
general
/
issue56633.dart.textual_outline.expect
blob: 3e2890873e1ffd0ca8a4c5e692dbf5a0c7629fcf [
file
] [
log
] [
blame
]
T
Function
<
S
extends
T
>()
method
<
T
>(
S
Function
<
S
extends
T
>()
f
)
=>
f
;
abstract
class
A
<
T
>
{
T
Function
<
S
extends
T
>(
S s
)
foo
=
<
S
extends
T
>(
S s
)
=>
s
;
}
typedef
F
<
T
,
S
extends
T
>
=
int
;
typedef
G
<
T
>
=
F
<
T
,
S
>
Function
<
S
extends
T
>();