Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
iterators
/
array.rs
blob: c83c5889967c1f5fc58522363899ac1be0848bf0 [
file
] [
log
] [
blame
]
//@ check-pass
fn
main
()
{
for
_ in
[
1
,
2
]
{}
let
x
=
[
1
,
2
];
for
_ in x
{}
for
_ in
[
1.0
,
2.0
]
{}
}