]> git.proxmox.com Git - rustc.git/blob - src/test/ui/closures/issue-52437.stderr
New upstream version 1.44.1+dfsg1
[rustc.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[E0658]: `loop` is not allowed in a `const`
8 --> $DIR/issue-52437.rs:2:13
9 |
10 LL | [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^
12 |
13 = note: see issue #52000 <https://github.com/rust-lang/rust/issues/52000> for more information
14 = help: add `#![feature(const_loop)]` to the crate attributes to enable
15
16 error[E0282]: type annotations needed
17 --> $DIR/issue-52437.rs:2:30
18 |
19 LL | [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
20 | ^ consider giving this closure parameter a type
21
22 error[E0308]: mismatched types
23 --> $DIR/issue-52437.rs:2:5
24 |
25 LL | fn main() {
26 | - expected `()` because of default return type
27 LL | [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
28 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[(); _]`
29
30 error: aborting due to 4 previous errors
31
32 Some errors have detailed explanations: E0282, E0308, E0658.
33 For more information about an error, try `rustc --explain E0282`.