aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/for_expr.rs
blob: 95dcf2ef50554f5cba51e3fc2c5eb5598ce3301d (plain)
1
2
3
4
5
6
// { dg-options "-fsyntax-only" }

fn main() {
    for a in 0..10 {}
    (for b in 0..10 {})
}