summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/break-and-continue.rs
blob: c01d8a0784556d93b4b6af8c00f8aecf5906ce4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// break and continue formatting

#![feature(loop_break_value)]

fn main() {
    'a: loop {
        break 'a;
    }

    let mut done = false;
    'b: while !done {
        done = true;
        continue 'b;
    }

    let x = loop {
        break 5;
    };

    let x = 'c: loop {
        break 'c 5;
    };
}