rust/tests/ui/issues/issue-45730.stderr

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

28 lines
1.0 KiB
Plaintext
Raw Normal View History

error[E0641]: cannot cast to a pointer of an unknown kind
--> $DIR/issue-45730.rs:3:28
|
2019-03-09 12:03:44 +00:00
LL | let x: *const _ = 0 as _;
| ^ needs 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
error[E0641]: cannot cast to a pointer of an unknown kind
--> $DIR/issue-45730.rs:5:28
|
2019-03-09 12:03:44 +00:00
LL | let x: *const _ = 0 as *const _;
| ^^^^^^^^ needs 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
error[E0641]: cannot cast to a pointer of an unknown kind
--> $DIR/issue-45730.rs:8:44
|
2019-03-09 12:03:44 +00:00
LL | let x = 0 as *const i32 as *const _ as *mut _;
| ^^^^^^ needs 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
error: aborting due to 3 previous errors
2019-11-16 17:05:26 +00:00
For more information about this error, try `rustc --explain E0641`.