]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25826.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-25826.stderr
1 error[E0658]: comparing raw pointers inside constant
2   --> $DIR/issue-25826.rs:3:30
3    |
4 LL |     const A: bool = unsafe { id::<u8> as *const () < id::<u16> as *const () };
5    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: for more information, see https://github.com/rust-lang/rust/issues/53020
8    = help: add #![feature(const_compare_raw_pointers)] 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`.