]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18294.stderr
Rollup merge of #59978 - ollie27:rustdoc_default, r=QuietMisdreavus
[rust.git] / src / test / ui / issues / issue-18294.stderr
1 error[E0658]: casting pointers to integers in constants is unstable
2   --> $DIR/issue-18294.rs:3:31
3    |
4 LL |     const Y: usize = unsafe { &X as *const u32 as usize };
5    |                               ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: for more information, see https://github.com/rust-lang/rust/issues/51910
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`.