rust/tests/ui/consts/const-address-of-mut.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
307 B
Rust
Raw Normal View History

2019-09-18 20:31:25 +00:00
#![feature(raw_ref_op)]
2023-12-17 10:24:34 +00:00
const A: () = { let mut x = 2; &raw mut x; }; //~ mutable pointer
2019-09-18 20:31:25 +00:00
2023-12-17 10:24:34 +00:00
static B: () = { let mut x = 2; &raw mut x; }; //~ mutable pointer
2019-09-18 20:31:25 +00:00
const fn foo() {
let mut x = 0;
2023-12-17 10:24:34 +00:00
let y = &raw mut x; //~ mutable pointer
2019-09-18 20:31:25 +00:00
}
fn main() {}