1error: invalid label name `'static`
2  --> $DIR/issue-52437.rs:2:13
3   |
4LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
5   |             ^^^^^^^
6
7error[E0282]: type annotations needed
8  --> $DIR/issue-52437.rs:2:30
9   |
10LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
11   |                              ^ consider giving this closure parameter a type
12
13error[E0308]: mismatched types
14  --> $DIR/issue-52437.rs:2:5
15   |
16LL | fn main() {
17   |           - expected `()` because of default return type
18LL |     [(); &(&'static: loop { |x| {}; }) as *const _ as usize]
19   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found array `[(); _]`
20
21error: aborting due to 3 previous errors
22
23Some errors have detailed explanations: E0282, E0308.
24For more information about an error, try `rustc --explain E0282`.
25