mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
323 B
Rust
18 lines
323 B
Rust
#![feature(raw_ref_op)]
|
|
|
|
const fn mutable_address_of_in_const() {
|
|
let mut a = 0;
|
|
let b = &raw mut a; //~ ERROR mutable pointer
|
|
}
|
|
|
|
struct X;
|
|
|
|
impl X {
|
|
const fn inherent_mutable_address_of_in_const() {
|
|
let mut a = 0;
|
|
let b = &raw mut a; //~ ERROR mutable pointer
|
|
}
|
|
}
|
|
|
|
fn main() {}
|