]> git.lizzy.rs Git - rust.git/blob - src/test/ui/loops/loops-reject-duplicate-labels.stderr
use jemallocator in rustc/rustdoc
[rust.git] / src / test / ui / loops / loops-reject-duplicate-labels.stderr
1 warning: label name `'fl` shadows a label name that is already in scope
2   --> $DIR/loops-reject-duplicate-labels.rs:11:5
3    |
4 LL |     'fl: for _ in 0..10 { break; }
5    |     --- first declared here
6 LL |     'fl: loop { break; }
7    |     ^^^ label `'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.rs:14:5
11    |
12 LL |     'lf: loop { break; }
13    |     --- first declared here
14 LL |     'lf: for _ in 0..10 { break; }
15    |     ^^^ label `'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.rs:16:5
19    |
20 LL |     'wl: while 2 > 1 { break; }
21    |     --- first declared here
22 LL |     'wl: loop { break; }
23    |     ^^^ label `'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.rs:18:5
27    |
28 LL |     'lw: loop { break; }
29    |     --- first declared here
30 LL |     'lw: while 2 > 1 { break; }
31    |     ^^^ label `'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.rs:20:5
35    |
36 LL |     'fw: for _ in 0..10 { break; }
37    |     --- first declared here
38 LL |     'fw: while 2 > 1 { break; }
39    |     ^^^ label `'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.rs:22:5
43    |
44 LL |     'wf: while 2 > 1 { break; }
45    |     --- first declared here
46 LL |     'wf: for _ in 0..10 { break; }
47    |     ^^^ label `'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.rs:24:5
51    |
52 LL |     'tl: while let Some(_) = None::<i32> { break; }
53    |     --- first declared here
54 LL |     'tl: loop { break; }
55    |     ^^^ label `'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.rs:26:5
59    |
60 LL |     'lt: loop { break; }
61    |     --- first declared here
62 LL |     'lt: while let Some(_) = None::<i32> { break; }
63    |     ^^^ label `'lt` already in scope
64
65 warning: 8 warnings emitted
66