mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-07 12:00:42 +00:00
16 lines
380 B
Plaintext
16 lines
380 B
Plaintext
error: expected `mut` or `const` keyword in raw pointer type
|
|
--> $DIR/double-pointer.rs:4:15
|
|
|
|
|
LL | let dptr: **const i32 = &ptr;
|
|
| ^
|
|
|
|
|
help: add `mut` or `const` here
|
|
|
|
|
LL | let dptr: *const *const i32 = &ptr;
|
|
| +++++
|
|
LL | let dptr: *mut *const i32 = &ptr;
|
|
| +++
|
|
|
|
error: aborting due to previous error
|
|
|