summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/range_from_expr_for_loop.rs
blob: 69b4b0c12c21a1f2b2fd66359368d821db74ce3e (plain)
1
2
3
4
5
6
7
// { dg-additional-options "-frust-compile-until=ast" }
fn main() {
    for _ in 1.. {
        break;
    }
    let i = 2;
}