rustfmt-nightly 1.4.11

Tool to find and fix Rust formatting issues
Documentation
#![feature(label_break_value)]

fn main() {
    let mut res = 0;
    's_39: { if res == 0i32 { println!("Hello, world!"); } }
    's_40: loop { println!("res = {}", res); res += 1; if res == 3i32 { break 's_40; } }
    let toto = || { if true { 42 } else { 24 } };
}