|
1 | 1 | warning: label name `'fl` shadows a label name that is already in scope
|
2 |
| - --> $DIR/loops-reject-duplicate-labels.rs:10:5 |
| 2 | + --> $DIR/loops-reject-duplicate-labels.rs:9:5 |
3 | 3 | |
|
4 | 4 | LL | 'fl: for _ in 0..10 { break; }
|
5 | 5 | | --- first declared here
|
6 | 6 | LL | 'fl: loop { break; }
|
7 | 7 | | ^^^ label `'fl` already in scope
|
8 | 8 |
|
9 | 9 | warning: label name `'lf` shadows a label name that is already in scope
|
10 |
| - --> $DIR/loops-reject-duplicate-labels.rs:13:5 |
| 10 | + --> $DIR/loops-reject-duplicate-labels.rs:12:5 |
11 | 11 | |
|
12 | 12 | LL | 'lf: loop { break; }
|
13 | 13 | | --- first declared here
|
14 | 14 | LL | 'lf: for _ in 0..10 { break; }
|
15 | 15 | | ^^^ label `'lf` already in scope
|
16 | 16 |
|
17 | 17 | warning: label name `'wl` shadows a label name that is already in scope
|
18 |
| - --> $DIR/loops-reject-duplicate-labels.rs:15:5 |
| 18 | + --> $DIR/loops-reject-duplicate-labels.rs:14:5 |
19 | 19 | |
|
20 | 20 | LL | 'wl: while 2 > 1 { break; }
|
21 | 21 | | --- first declared here
|
22 | 22 | LL | 'wl: loop { break; }
|
23 | 23 | | ^^^ label `'wl` already in scope
|
24 | 24 |
|
25 | 25 | warning: label name `'lw` shadows a label name that is already in scope
|
26 |
| - --> $DIR/loops-reject-duplicate-labels.rs:17:5 |
| 26 | + --> $DIR/loops-reject-duplicate-labels.rs:16:5 |
27 | 27 | |
|
28 | 28 | LL | 'lw: loop { break; }
|
29 | 29 | | --- first declared here
|
30 | 30 | LL | 'lw: while 2 > 1 { break; }
|
31 | 31 | | ^^^ label `'lw` already in scope
|
32 | 32 |
|
33 | 33 | warning: label name `'fw` shadows a label name that is already in scope
|
34 |
| - --> $DIR/loops-reject-duplicate-labels.rs:19:5 |
| 34 | + --> $DIR/loops-reject-duplicate-labels.rs:18:5 |
35 | 35 | |
|
36 | 36 | LL | 'fw: for _ in 0..10 { break; }
|
37 | 37 | | --- first declared here
|
38 | 38 | LL | 'fw: while 2 > 1 { break; }
|
39 | 39 | | ^^^ label `'fw` already in scope
|
40 | 40 |
|
41 | 41 | warning: label name `'wf` shadows a label name that is already in scope
|
42 |
| - --> $DIR/loops-reject-duplicate-labels.rs:21:5 |
| 42 | + --> $DIR/loops-reject-duplicate-labels.rs:20:5 |
43 | 43 | |
|
44 | 44 | LL | 'wf: while 2 > 1 { break; }
|
45 | 45 | | --- first declared here
|
46 | 46 | LL | 'wf: for _ in 0..10 { break; }
|
47 | 47 | | ^^^ label `'wf` already in scope
|
48 | 48 |
|
49 | 49 | warning: label name `'tl` shadows a label name that is already in scope
|
50 |
| - --> $DIR/loops-reject-duplicate-labels.rs:23:5 |
| 50 | + --> $DIR/loops-reject-duplicate-labels.rs:22:5 |
51 | 51 | |
|
52 | 52 | LL | 'tl: while let Some(_) = None::<i32> { break; }
|
53 | 53 | | --- first declared here
|
54 | 54 | LL | 'tl: loop { break; }
|
55 | 55 | | ^^^ label `'tl` already in scope
|
56 | 56 |
|
57 | 57 | warning: label name `'lt` shadows a label name that is already in scope
|
58 |
| - --> $DIR/loops-reject-duplicate-labels.rs:25:5 |
| 58 | + --> $DIR/loops-reject-duplicate-labels.rs:24:5 |
59 | 59 | |
|
60 | 60 | LL | 'lt: loop { break; }
|
61 | 61 | | --- first declared here
|
62 | 62 | LL | 'lt: while let Some(_) = None::<i32> { break; }
|
63 | 63 | | ^^^ label `'lt` already in scope
|
64 | 64 |
|
65 |
| -warning: 8 warnings emitted |
| 65 | +warning: label name `'bl` shadows a label name that is already in scope |
| 66 | + --> $DIR/loops-reject-duplicate-labels.rs:27:5 |
| 67 | + | |
| 68 | +LL | 'bl: {} |
| 69 | + | --- first declared here |
| 70 | +LL | 'bl: {} |
| 71 | + | ^^^ label `'bl` already in scope |
| 72 | + |
| 73 | +warning: 9 warnings emitted |
66 | 74 |
|
0 commit comments