20 lines
274 B
Rust
20 lines
274 B
Rust
// check-pass
|
|
|
|
#![feature(raw_ref_op)]
|
|
|
|
const fn const_address_of_in_const() {
|
|
let mut a = 0;
|
|
let b = &raw const a;
|
|
}
|
|
|
|
struct X;
|
|
|
|
impl X {
|
|
const fn inherent_const_address_of_in_const() {
|
|
let mut a = 0;
|
|
let b = &raw const a;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|