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

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

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