rust/src/test/ui/consts/const-multi-ref.rs

15 lines
338 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.
2019-09-17 18:25:26 -05:00
const _X: i32 = {
let mut a = 5;
let p = &mut a; //~ ERROR references in constants may only refer to immutable values
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
};
fn main() {}