2017-11-03 16:58:01 +09:00
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-45730.rs:3:23
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let x: *const _ = 0 as _;
|
2017-11-03 16:58:01 +09:00
|
|
|
| ^^^^^-
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
= note: the type information given here is insufficient to check whether the pointer cast is valid
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-45730.rs:5:23
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let x: *const _ = 0 as *const _;
|
2017-11-03 16:58:01 +09:00
|
|
|
| ^^^^^--------
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
= note: the type information given here is insufficient to check whether the pointer cast is valid
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
|
|
error[E0641]: cannot cast to a pointer of an unknown kind
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-45730.rs:8:13
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let x = 0 as *const i32 as *const _ as *mut _;
|
2017-11-03 16:58:01 +09:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^------
|
|
|
|
| |
|
|
|
|
| help: consider giving more type information
|
|
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
= note: the type information given here is insufficient to check whether the pointer cast is valid
|
2017-11-03 16:58:01 +09:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-11-16 12:05:26 -05:00
|
|
|
For more information about this error, try `rustc --explain E0641`.
|