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

12 lines
297 B
Rust
Raw Normal View History

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
let reborrow = {p}; //~ ERROR references in constants may only refer to immutable values
let pp = &reborrow;
let ppp = &pp;
***ppp
};
fn main() {}