summary refs log tree commit diff
path: root/src/test/run-pass/macros/macro-lifetime-used-with-labels.stderr
blob: 05418d9bddf3f6ec43bfc7f8bb22f1162df8822f (plain)
1
2
3
4
5
6
7
8
9
10
11
warning: label name `'b` shadows a label name that is already in scope
  --> $DIR/macro-lifetime-used-with-labels.rs:21:9
   |
LL |         'b: loop {
   |         ^^ lifetime 'b already in scope
...
LL |     'b: loop {
   |     -- first declared here
LL |         br2!('b);
   |         --------- in this macro invocation