2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unreachable_code)]
|
2019-11-12 05:19:40 -06:00
|
|
|
#![allow(unused_labels)]
|
2018-09-25 16:51:35 -05:00
|
|
|
|
2015-04-21 02:58:06 -05:00
|
|
|
// Test that labels injected by macros do not break hygiene. This
|
|
|
|
// checks cases where the macros invocations are under the rhs of a
|
|
|
|
// let statement.
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2014-02-15 02:54:32 -06:00
|
|
|
macro_rules! loop_x {
|
|
|
|
($e: expr) => {
|
|
|
|
// $e shouldn't be able to interact with this 'x
|
2021-12-08 15:40:16 -06:00
|
|
|
'x: loop {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 02:54:32 -06:00
|
|
|
}
|
|
|
|
|
2014-07-25 19:12:51 -05:00
|
|
|
macro_rules! while_true {
|
|
|
|
($e: expr) => {
|
|
|
|
// $e shouldn't be able to interact with this 'x
|
2021-12-08 15:40:16 -06:00
|
|
|
'x: while 1 + 1 == 2 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-07-25 19:12:51 -05:00
|
|
|
}
|
|
|
|
|
2014-02-15 02:54:32 -06:00
|
|
|
macro_rules! run_once {
|
|
|
|
($e: expr) => {
|
|
|
|
// ditto
|
2021-12-08 15:40:16 -06:00
|
|
|
'x: for _ in 0..1 {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
};
|
2014-02-15 02:54:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let mut i = 0;
|
2014-02-15 02:54:32 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
let j: isize = {
|
2014-02-15 02:54:32 -06:00
|
|
|
'x: loop {
|
|
|
|
// this 'x should refer to the outer loop, lexically
|
|
|
|
loop_x!(break 'x);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
i + 1
|
|
|
|
};
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(j, 1);
|
2014-02-15 02:54:32 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
let k: isize = {
|
2015-01-25 15:05:03 -06:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 02:54:32 -06:00
|
|
|
// ditto
|
|
|
|
loop_x!(break 'x);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
i + 1
|
|
|
|
};
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(k, 1);
|
2014-02-15 02:54:32 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
let l: isize = {
|
2015-01-25 15:05:03 -06:00
|
|
|
'x: for _ in 0..1 {
|
2014-07-25 19:12:51 -05:00
|
|
|
// ditto
|
|
|
|
while_true!(break 'x);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
i + 1
|
|
|
|
};
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(l, 1);
|
2014-07-25 19:12:51 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
let n: isize = {
|
2015-01-25 15:05:03 -06:00
|
|
|
'x: for _ in 0..1 {
|
2014-02-15 02:54:32 -06:00
|
|
|
// ditto
|
|
|
|
run_once!(continue 'x);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
i + 1
|
|
|
|
};
|
2015-01-25 15:05:03 -06:00
|
|
|
assert_eq!(n, 1);
|
2014-02-15 02:54:32 -06:00
|
|
|
}
|