rust/tests/source/label_break.rs
2018-05-21 13:30:07 +08:00

16 lines
226 B
Rust

// format with label break value.
fn main() {
'empty_block: {}
let result = 'block: {
if foo() {
// comment
break 'block 1;
}
if bar() { /* comment */
break 'block 2;
}
3
};
}