rust/tests/ui/hygiene/hygienic-labels.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.3 KiB
Rust
Raw Normal View History

// run-pass
#![allow(unreachable_code)]
#![allow(unused_labels)]
// 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.
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
}
};
}
macro_rules! run_once {
($e: expr) => {
// ditto
2021-12-08 21:40:16 +00:00
'x: for _ in 0..1 {
$e
}
};
}
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
}
pub fn main() {
2015-01-25 21:05:03 +00:00
'x: for _ in 0..1 {
// this 'x should refer to the outer loop, lexically
loop_x!(break 'x);
panic!("break doesn't act hygienically inside for loop");
}
'x: loop {
// ditto
loop_x!(break 'x);
panic!("break doesn't act hygienically inside infinite loop");
}
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);
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 {
// ditto
run_once!(continue 'x);
panic!("continue doesn't act hygienically inside for loop");
}
}