Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
for_in_loop_promotion.dart.weak.modular.expect
blob: f98e42e58a73aaf41f4885983f73a9d510f03963 [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method test
(
core
::
List
<
core
::
num
*>*
nums
)
→
void
{
for
(
core
::
num
*
x
in
nums
)
{
if
(
x
is
core
::
int
*)
{
core
::
int
*
y
=
x
{
core
::
int
*};
}
}
}
static
method main
()
→
dynamic
{}