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