summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3227/one.rs
blob: fcc8331000d33f90ed5f92e61824795cba0c3483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-version: One

fn main() {
    thread::spawn(|| {
        while true {
            println!("iteration");
        }
    });

    thread::spawn(|| loop {
        println!("iteration");
    });
}