Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_method_function_typed.dart.textual_outline.expect
blob: 68c40ee5b5283a5f36323c789382bb4aa0d9e853 [
file
] [
log
] [
blame
]
library test
;
typedef
int
F
();
abstract
class
A
{
void
x
(
F value
);
}
abstract
class
B
extends
A
{
void
x
(
value
());
}
T f
<
T
>()
=>
throw
''
;
g
(
B b
)
{}
main
()
{}