summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/issue-65394.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/consts/const-eval/issue-65394.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/consts/const-eval/issue-65394.stderr')
-rw-r--r--tests/ui/consts/const-eval/issue-65394.stderr22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/consts/const-eval/issue-65394.stderr b/tests/ui/consts/const-eval/issue-65394.stderr
new file mode 100644
index 000000000..ae6f0e937
--- /dev/null
+++ b/tests/ui/consts/const-eval/issue-65394.stderr
@@ -0,0 +1,22 @@
+error[E0658]: mutable references are not allowed in constants
+ --> $DIR/issue-65394.rs:8:13
+ |
+LL | let r = &mut x;
+ | ^^^^^^
+ |
+ = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
+ = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
+
+error[E0493]: destructor of `Vec<i32>` cannot be evaluated at compile-time
+ --> $DIR/issue-65394.rs:7:9
+ |
+LL | let mut x = Vec::<i32>::new();
+ | ^^^^^ the destructor for this type cannot be evaluated in constants
+...
+LL | };
+ | - value is dropped here
+
+error: aborting due to 2 previous errors
+
+Some errors have detailed explanations: E0493, E0658.
+For more information about an error, try `rustc --explain E0493`.