]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-52023-array-size-pointer-cast.stderr
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / ui / issue-52023-array-size-pointer-cast.stderr
1 error[E0658]: casting pointers to integers in constants is unstable (see issue #51910)
2   --> $DIR/issue-52023-array-size-pointer-cast.rs:12:17
3    |
4 LL |     let _ = [0; (&0 as *const i32) as usize]; //~ ERROR casting pointers to integers in constants
5    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0658`.