]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-eval/issue-65394.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / const-eval / issue-65394.stderr
1 error[E0658]: mutable references are not allowed in constants
2 --> $DIR/issue-65394.rs:8:13
3 |
4 LL | let r = &mut x;
5 | ^^^^^^
6 |
7 = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
8 = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
9
10 error[E0493]: destructor of `Vec<i32>` cannot be evaluated at compile-time
11 --> $DIR/issue-65394.rs:7:9
12 |
13 LL | let mut x = Vec::<i32>::new();
14 | ^^^^^ the destructor for this type cannot be evaluated in constants
15 ...
16 LL | };
17 | - value is dropped here
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0493, E0658.
22 For more information about an error, try `rustc --explain E0493`.