rust/tests/ui/consts/const-eval/const_raw_ptr_ops.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-07-25 03:17:00 -05:00
error[E0277]: can't compare `*const i32` with `_` in const contexts
--> $DIR/const_raw_ptr_ops.rs:4:43
|
2019-03-09 06:03:44 -06:00
LL | const X: bool = unsafe { &1 as *const i32 == &2 as *const i32 };
2022-07-25 03:17:00 -05:00
| ^^ no implementation for `*const i32 == _`
|
2022-07-25 03:17:00 -05:00
= help: the trait `~const PartialEq<_>` is not implemented for `*const i32`
note: the trait `PartialEq<_>` is implemented for `*const i32`, but that implementation is not `const`
--> $DIR/const_raw_ptr_ops.rs:4:43
|
LL | const X: bool = unsafe { &1 as *const i32 == &2 as *const i32 };
| ^^
2022-07-25 03:17:00 -05:00
error[E0277]: can't compare `*const i32` with `_` in const contexts
--> $DIR/const_raw_ptr_ops.rs:6:44
|
LL | const X2: bool = unsafe { 42 as *const i32 == 43 as *const i32 };
2022-07-25 03:17:00 -05:00
| ^^ no implementation for `*const i32 == _`
|
2022-07-25 03:17:00 -05:00
= help: the trait `~const PartialEq<_>` is not implemented for `*const i32`
note: the trait `PartialEq<_>` is implemented for `*const i32`, but that implementation is not `const`
--> $DIR/const_raw_ptr_ops.rs:6:44
|
LL | const X2: bool = unsafe { 42 as *const i32 == 43 as *const i32 };
| ^^
error: aborting due to 2 previous errors
2022-07-25 03:17:00 -05:00
For more information about this error, try `rustc --explain E0277`.