2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unreachable_code)]
|
2019-11-12 11:19:40 +00:00
|
|
|
#![allow(unused_labels)]
|
2015-04-21 07:58:06 +00:00
|
|
|
// Test that labels injected by macros do not break hygiene.
|
|
|
|
|
|
|
|
// Issue #24278: The label/lifetime shadowing checker from #24162
|
|
|
|
// conservatively ignores hygiene, and thus issues warnings that are
|
|
|
|
// both true- and false-positives for this test.
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2014-02-15 08:54:32 +00:00
|
|
|
macro_rules! loop_x {
|
|
|
|
($e: expr) => {
|
|
|
|
// $e shouldn't be able to interact with this 'x
|
2021-12-08 21:40:16 +00:00
|
|
|
'x: loop {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 08:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! run_once {
|
|
|
|
($e: expr) => {
|
|
|
|
// ditto
|
2021-12-08 21:40:16 +00:00
|
|
|
'x: for _ in 0..1 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 08:54:32 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 00:12:51 +00:00
|
|
|
macro_rules! while_x {
|
|
|
|
($e: expr) => {
|
|
|
|
// ditto
|
2021-12-08 21:40:16 +00:00
|
|
|
'x: while 1 + 1 == 2 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-07-26 00:12:51 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 08:54:32 +00:00
|
|
|
pub fn main() {
|
2015-01-25 21:05:03 +00:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 08:54:32 +00:00
|
|
|
// this 'x should refer to the outer loop, lexically
|
|
|
|
loop_x!(break 'x);
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("break doesn't act hygienically inside for loop");
|
2014-02-15 08:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
'x: loop {
|
|
|
|
// ditto
|
|
|
|
loop_x!(break 'x);
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("break doesn't act hygienically inside infinite loop");
|
2014-02-15 08:54:32 +00:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
'x: while 1 + 1 == 2 {
|
2014-07-26 00:12:51 +00:00
|
|
|
while_x!(break 'x);
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("break doesn't act hygienically inside infinite while loop");
|
2014-07-26 00:12:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:05:03 +00:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 08:54:32 +00:00
|
|
|
// ditto
|
|
|
|
run_once!(continue 'x);
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("continue doesn't act hygienically inside for loop");
|
2014-02-15 08:54:32 +00:00
|
|
|
}
|
|
|
|
}
|