mirror of https://github.com/rust-lang/rust
21 lines
375 B
Rust
21 lines
375 B
Rust
fn address_of_shared() {
|
|
let mut x = 0;
|
|
let y = &x;
|
|
|
|
let q = &raw mut x; //~ ERROR cannot borrow
|
|
|
|
drop(y);
|
|
}
|
|
|
|
fn address_of_mutably_borrowed() {
|
|
let mut x = 0;
|
|
let y = &mut x;
|
|
|
|
let p = &raw const x; //~ ERROR cannot borrow
|
|
let q = &raw mut x; //~ ERROR cannot borrow
|
|
|
|
drop(y);
|
|
}
|
|
|
|
fn main() {}
|