rust/tests/ui/consts/const-multi-ref.rs

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

25 lines
554 B
Rust
Raw Normal View History

// Ensure that we point the user to the erroneous borrow but not to any subsequent borrows of that
// initial one.
const _: i32 = {
2019-09-17 18:25:26 -05:00
let mut a = 5;
let p = &mut a; //~ ERROR mutable references are not allowed in constants
2019-09-17 18:25:26 -05:00
let reborrow = {p};
2019-09-17 18:25:26 -05:00
let pp = &reborrow;
let ppp = &pp;
***ppp
};
const _: std::cell::Cell<i32> = {
let mut a = std::cell::Cell::new(5);
let p = &a; //~ ERROR borrowed element may contain interior mutability
let reborrow = {p};
let pp = &reborrow;
let ppp = &pp;
a
};
2019-09-17 18:25:26 -05:00
fn main() {}