Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
constructors_infer_from_arguments_argument_not_assignable.dart.textual_outline.expect
blob: ffc529da3129f8f96821d51b0041416c09c9e32b [
file
] [
log
] [
blame
]
library test
;
class
A
{}
typedef
T F
<
T
>();
class
C
<
T
extends
A
>
{
C
(
F
<
T
>
f
);
}
class
NotA
{}
NotA
myF
()
=>
throw
''
;
test
()
{}