Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
type_promotion_ignores_local_functions.dart.weak.transformed.expect
blob: 62698848e622c28c7559b3fc54ac589aa19426f4 [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
typedef
FunctionReturningInt
=
()
→*
core
::
int
*;
static
method main
()
→
dynamic
{
function
f
()
→
core
::
num
*
return
0
;
if
(
f
is
()
→*
core
::
int
*)
{
f
;
}
}