about summary refs log tree commit diff
path: root/src/test/ui/hygiene/hygienic-labels.rs
blob: c9f494b68b4a812a5e73599bfec24b70a2127d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// 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
        'x: loop { $e }
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
    }
}

macro_rules! run_once {
    ($e: expr) => {
        // ditto
        'x: for _ in 0..1 { $e }
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
    }
}

macro_rules! while_x {
    ($e: expr) => {
        // ditto
        'x: while 1 + 1 == 2 { $e }
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
    }
}

pub fn main() {
    '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 {
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope

        // ditto
        loop_x!(break 'x);
        panic!("break doesn't act hygienically inside infinite loop");
    }

    'x: while 1 + 1 == 2 {
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope

        while_x!(break 'x);
        panic!("break doesn't act hygienically inside infinite while loop");
    }

    'x: for _ in 0..1 {
        //~^ WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope
        //~| WARNING shadows a label name that is already in scope

        // ditto
        run_once!(continue 'x);
        panic!("continue doesn't act hygienically inside for loop");
    }
}