10 lines
382 B
Plaintext
10 lines
382 B
Plaintext
error[E0395]: raw pointers cannot be compared in constants
|
|
--> $DIR/issue-25826.rs:13:21
|
|
|
|
|
LL | const A: bool = id::<u8> as *const () < id::<u16> as *const ();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comparing raw pointers in static
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0395`.
|