blob: 86a3e9f44c38f83c1045efb22cf54039a638750b [file] [log] [blame]
// run-pass
#![allow(stable_features)]
#![allow(unreachable_code)]
macro_rules! x {
($a:lifetime) => {
$a: loop {
break $a;
panic!("failed");
}
}
}
macro_rules! br {
($a:lifetime) => {
break $a;
}
}
macro_rules! br2 {
($b:lifetime) => {
'b: loop { //~ WARNING `'b` shadows a label name that is already in scope
break $b; // this $b should refer to the outer loop.
}
}
}
fn main() {
x!('a);
'c: loop {
br!('c);
panic!("failed");
}
'b: loop {
br2!('b);
panic!("failed");
}
}