mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
207 B
Rust
8 lines
207 B
Rust
|
fn main() {
|
||
|
let x: i32 = 5;
|
||
|
let ptr: *const i32 = &x;
|
||
|
let dptr: **const i32 = &ptr;
|
||
|
//~^ ERROR expected `mut` or `const` keyword in raw pointer type
|
||
|
//~| HELP add `mut` or `const` here
|
||
|
}
|