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