Sign in
dart
/
sdk.git
/
f36420a912bb76b61fc8b934286df44dd1aff09b
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
covariant_generic_parameter_tear_off.dart.textual_outline.expect
blob: 86fd3b6c1ac102e6afb74ad9982b8eff728e7e54 [
file
] [
log
] [
blame
]
library test
;
typedef
void
F
<
T
>(
T x
);
typedef
U G
<
T
,
U
>(
T x
);
class
C
<
T
>
{
void
f1
(
T x
)
{}
T f2
(
List
<
T
>
x
)
=>
x
.
first
;
}
F
<num>
g1
(
C
<num>
c
)
{}
void
g2
(
C
<int>
c
,
Object
x
)
{}
G
<
List
<num>
,
num
>
g3
(
C
<num>
c
)
{}
void
test
()
{}
main
()
{}