]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-eval/issue-52442.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / issue-52442.stderr
CommitLineData
60c5eb7d
XL
1error[E0658]: `loop` is not allowed in a `const`
2 --> $DIR/issue-52442.rs:2:14
3 |
4LL | [(); { &loop { break } as *const _ as usize } ];
5 | ^^^^^^^^^^^^^^
6 |
7 = note: for more information, see https://github.com/rust-lang/rust/issues/52000
8 = help: add `#![feature(const_loop)]` to the crate attributes to enable
9
416331ca
XL
10error[E0658]: casting pointers to integers in constants is unstable
11 --> $DIR/issue-52442.rs:2:13
8faf50e0 12 |
532ac7d7 13LL | [(); { &loop { break } as *const _ as usize } ];
416331ca
XL
14 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15 |
16 = note: for more information, see https://github.com/rust-lang/rust/issues/51910
17 = help: add `#![feature(const_raw_ptr_to_usize_cast)]` to the crate attributes to enable
8faf50e0 18
416331ca
XL
19error[E0080]: evaluation of constant value failed
20 --> $DIR/issue-52442.rs:2:13
a1dfa0c6 21 |
532ac7d7 22LL | [(); { &loop { break } as *const _ as usize } ];
416331ca 23 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ "pointer-to-integer cast" needs an rfc before being allowed inside constants
a1dfa0c6 24
60c5eb7d 25error: aborting due to 3 previous errors
8faf50e0 26
416331ca
XL
27Some errors have detailed explanations: E0080, E0658.
28For more information about an error, try `rustc --explain E0080`.