Sign in
rust
/
rust
/
98e8f99bc0401f9ff22dca2290b2bc2c33345a4b
/
.
/
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
}