]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/issue-52437.stderr
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / closures / issue-52437.stderr
1 error: invalid label name `'static`
2   --> $DIR/issue-52437.rs:2:13
3    |
4 LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
5    |             ^^^^^^^
6
7 error[E0282]: type annotations needed
8   --> $DIR/issue-52437.rs:2:30
9    |
10 LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
11    |                              ^
12    |
13 help: consider giving this closure parameter an explicit type
14    |
15 LL |     [(); &(&'static: loop { |x: /* Type */| {}; }) as *const _ as usize]
16    |                               ++++++++++++
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0282`.