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