summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/trailing_semicolon/false.rs
blob: 9fa746e9c0ffb0a4035321942af5313946e96b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// rustfmt-trailing_semicolon: false

#![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
    };
}

fn foo() -> usize {
    return 0
}