Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
parser
/
double-pointer.rs
blob: 54d34db4a50f495e1b734ae885098203c7daf8d8 [
file
] [
log
] [
blame
]
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
}