]> git.lizzy.rs Git - rust.git/blob - src/test/ui/loops/loops-reject-lifetime-shadowing-label.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / loops / loops-reject-lifetime-shadowing-label.stderr
1 warning: lifetime name `'a` shadows a label name that is already in scope
2   --> $DIR/loops-reject-lifetime-shadowing-label.rs:21:55
3    |
4 LL |     'a: loop {
5    |     -- first declared here
6 LL |         let b = Box::new(|x: &i8| *x) as Box<dyn for <'a> Fn(&'a i8) -> i8>;
7    |                                                       ^^ label `'a` already in scope
8
9 warning: lifetime name `'b` shadows a label name that is already in scope
10   --> $DIR/loops-reject-lifetime-shadowing-label.rs:28:55
11    |
12 LL |     'b: {
13    |     -- first declared here
14 LL |         let b = Box::new(|x: &()| ()) as Box<dyn for <'b> Fn(&'b ())>;
15    |                                                       ^^ label `'b` already in scope
16
17 warning: 2 warnings emitted
18