mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
248 B
Rust
12 lines
248 B
Rust
// run-pass
|
|
// Check usage and precedence of block arguments in expressions:
|
|
pub fn main() {
|
|
let v = vec![-1.0f64, 0.0, 1.0, 2.0, 3.0];
|
|
|
|
// Statement form does not require parentheses:
|
|
for i in &v {
|
|
println!("{}", *i);
|
|
}
|
|
|
|
}
|