Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
instantiate_tearoff_after_contravariance_check.dart.textual_outline.expect
blob: 585e21c5a5c011d0bf617acd26d6e3712f3f65bf [
file
] [
log
] [
blame
]
library test
;
class
C
<
T
>
{
void
Function
(
T
)
f
<
U
>(
U x
)
=>
(
y
)
{};
}
void
test
(
C
<
String
>
c
)
{}
main
()
{}