summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-25826.stderr
blob: 780edd2149fe102ce3ed1fd78264ecf77f247b4c (plain)
1
2
3
4
5
6
7
8
9
10
error: pointers cannot be reliably compared during const eval
  --> $DIR/issue-25826.rs:3:30
   |
LL |     const A: bool = unsafe { id::<u8> as *const () < id::<u16> as *const () };
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: see issue #53020 <https://github.com/rust-lang/rust/issues/53020> for more information

error: aborting due to previous error