rust/src/test/ui/issues/issue-25826.stderr

12 lines
455 B
Plaintext
Raw Normal View History

error[E0658]: comparing raw pointers inside constant (see issue #53020)
2018-12-25 09:56:47 -06:00
--> $DIR/issue-25826.rs:3:21
|
2018-02-22 18:42:32 -06:00
LL | const A: bool = id::<u8> as *const () < id::<u16> as *const ();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(const_compare_raw_pointers)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.