summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-17385.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/issues/issue-17385.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-17385.stderr')
-rw-r--r--src/test/ui/issues/issue-17385.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-17385.stderr b/src/test/ui/issues/issue-17385.stderr
new file mode 100644
index 000000000..77aa201b3
--- /dev/null
+++ b/src/test/ui/issues/issue-17385.stderr
@@ -0,0 +1,23 @@
+error[E0382]: use of moved value: `foo`
+ --> $DIR/issue-17385.rs:18:5
+ |
+LL | let foo = X(1);
+ | --- move occurs because `foo` has type `X`, which does not implement the `Copy` trait
+LL | drop(foo);
+ | --- value moved here
+LL | match foo {
+ | ^^^^^^^^^ value used here after move
+
+error[E0382]: use of moved value: `e`
+ --> $DIR/issue-17385.rs:25:11
+ |
+LL | let e = Enum::Variant2;
+ | - move occurs because `e` has type `Enum`, which does not implement the `Copy` trait
+LL | drop(e);
+ | - value moved here
+LL | match e {
+ | ^ value used here after move
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0382`.