]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-eval/issue-65394.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / const-eval / issue-65394.rs
1 // This test originated from #65394. We conservatively assume that `x` is still `LiveDrop` even
2 // after it has been moved because a mutable reference to it exists at some point in the const body.
3 //
4 // We will likely have to change this behavior before we allow `&mut` in a `const`.
5
6 const _: Vec<i32> = {
7 let mut x = Vec::<i32>::new(); //~ ERROR destructor of
8 let r = &mut x; //~ ERROR mutable references are not allowed in constants
9 let y = x;
10 y
11 };
12
13 fn main() {}