2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unreachable_code)]
|
2019-11-12 03:19:40 -08:00
|
|
|
#![allow(unused_labels)]
|
2015-04-21 09:58:06 +02: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 13:13:15 -07:00
|
|
|
|
2014-02-15 16:54:32 +08:00
|
|
|
macro_rules! loop_x {
|
|
|
|
($e: expr) => {
|
|
|
|
// $e shouldn't be able to interact with this 'x
|
2021-12-08 22:40:16 +01:00
|
|
|
'x: loop {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 16:54:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! run_once {
|
|
|
|
($e: expr) => {
|
|
|
|
// ditto
|
2021-12-08 22:40:16 +01:00
|
|
|
'x: for _ in 0..1 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 16:54:32 +08:00
|
|
|
}
|
|
|
|
|
2014-07-25 20:12:51 -04:00
|
|
|
macro_rules! while_x {
|
|
|
|
($e: expr) => {
|
|
|
|
// ditto
|
2021-12-08 22:40:16 +01:00
|
|
|
'x: while 1 + 1 == 2 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-07-25 20:12:51 -04:00
|
|
|
}
|
|
|
|
|
2014-02-15 16:54:32 +08:00
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 16:54:32 +08:00
|
|
|
// this 'x should refer to the outer loop, lexically
|
|
|
|
loop_x!(break 'x);
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!("break doesn't act hygienically inside for loop");
|
2014-02-15 16:54:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
'x: loop {
|
|
|
|
// ditto
|
|
|
|
loop_x!(break 'x);
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!("break doesn't act hygienically inside infinite loop");
|
2014-02-15 16:54:32 +08:00
|
|
|
}
|
|
|
|
|
2015-01-25 22:05:03 +01:00
|
|
|
'x: while 1 + 1 == 2 {
|
2014-07-25 20:12:51 -04:00
|
|
|
while_x!(break 'x);
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!("break doesn't act hygienically inside infinite while loop");
|
2014-07-25 20:12:51 -04:00
|
|
|
}
|
|
|
|
|
2015-01-25 22:05:03 +01:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 16:54:32 +08:00
|
|
|
// ditto
|
|
|
|
run_once!(continue 'x);
|
2014-10-09 15:17:22 -04:00
|
|
|
panic!("continue doesn't act hygienically inside for loop");
|
2014-02-15 16:54:32 +08:00
|
|
|
}
|
|
|
|
}
|