mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
20 lines
424 B
Rust
20 lines
424 B
Rust
// check-pass
|
|
|
|
#![feature(raw_ref_op)]
|
|
|
|
const A: *const i32 = &raw const *&2;
|
|
static B: () = { &raw const *&2; };
|
|
static mut C: *const i32 = &raw const *&2;
|
|
const D: () = { let x = 2; &raw const x; };
|
|
static E: () = { let x = 2; &raw const x; };
|
|
static mut F: () = { let x = 2; &raw const x; };
|
|
|
|
const fn const_ptr() {
|
|
let x = 0;
|
|
let ptr = &raw const x;
|
|
let r = &x;
|
|
let ptr2 = &raw const *r;
|
|
}
|
|
|
|
fn main() {}
|