]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closures/issue-52437.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / 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    |                              ^ consider giving this closure parameter a type
12
13 error[E0308]: mismatched types
14   --> $DIR/issue-52437.rs:2:5
15    |
16 LL | fn main() {
17    |           - expected `()` because of default return type
18 LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
19    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[(); _]`
20
21 error: aborting due to 3 previous errors
22
23 Some errors have detailed explanations: E0282, E0308.
24 For more information about an error, try `rustc --explain E0282`.