mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
118 B
Rust
9 lines
118 B
Rust
//@ check-pass
|
|
|
|
fn main() {
|
|
for _ in [1, 2] {}
|
|
let x = [1, 2];
|
|
for _ in x {}
|
|
for _ in [1.0, 2.0] {}
|
|
}
|