rust/tests/target/label_break.rs

29 lines
506 B
Rust
Raw Normal View History

2018-05-21 04:18:06 +00:00
// format with label break value.
fn main() {
2018-06-07 03:15:59 +00:00
'empty_block: {}
2018-05-21 04:18:06 +00:00
2018-06-07 03:15:42 +00:00
'block: {
2018-05-21 14:19:26 +00:00
do_thing();
if condition_not_met() {
break 'block;
}
do_next_thing();
if condition_not_met() {
break 'block;
}
do_last_thing();
}
let result = 'block: {
2018-05-21 04:18:06 +00:00
if foo() {
// comment
break 'block 1;
}
if bar() {
/* comment */
break 'block 2;
}
3
};
}