summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/old-closure-arg.rs
blob: bd1385e5c33477bb74f546864814f694dec8d620 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);
    }

}