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