This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
58e901b6fd
rust
/
tests
/
ui
/
iterators
/
array.rs
9 lines
117 B
Rust
Raw
Normal View
History
Unescape
Escape
Adjust docs and tests for new `IntoIterator` impl for arrays
2020-07-28 19:03:56 +02:00
// check-pass
Add tests for handled cases
2018-10-09 19:01:17 -07:00
fn
main
(
)
{
for
_
in
[
1
,
2
]
{
}
let
x
=
[
1
,
2
]
;
for
_
in
x
{
}
for
_
in
[
1.0
,
2.0
]
{
}
}
Copy permalink