]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-eval/issue-52442.stderr
New upstream version 1.50.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / issue-52442.stderr
1 error[E0658]: casting pointers to integers in constants is unstable
2 --> $DIR/issue-52442.rs:2:13
3 |
4 LL | [(); { &loop { break } as *const _ as usize } ];
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: see issue #51910 <https://github.com/rust-lang/rust/issues/51910> for more information
8 = help: add `#![feature(const_raw_ptr_to_usize_cast)]` to the crate attributes to enable
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0658`.