warning: label name `'b` shadows a label name that is already in scope --> $DIR/label_break_value.rs:105:18 | LL | v if { 'b: { break 'b v == 5; } } => { x = 41; }, | -- first declared here LL | _ => 'b: { | ^^ label `'b` already in scope warning: label name `'a` shadows a label name that is already in scope --> $DIR/label_break_value.rs:131:17 | LL | let x: u8 = 'a: { | -- first declared here ... LL | let x: u8 = 'a: { | ^^ label `'a` already in scope warning: label name `'b` shadows a label name that is already in scope --> $DIR/label_break_value.rs:132:9 | LL | 'b: { | -- first declared here ... LL | 'b: { | ^^ label `'b` already in scope warning: 3 warnings emitted