summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr')
-rw-r--r--src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr b/src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr
deleted file mode 100644
index 1f9cbdb73..000000000
--- a/src/test/ui/borrowck/issue-54597-reject-move-out-of-borrow-via-pat.stderr
+++ /dev/null
@@ -1,12 +0,0 @@
-error[E0507]: cannot move out of `*array` which is behind a shared reference
- --> $DIR/issue-54597-reject-move-out-of-borrow-via-pat.rs:14:13
- |
-LL | *array
- | ^^^^^^
- | |
- | move occurs because `*array` has type `Vec<Value>`, which does not implement the `Copy` trait
- | help: consider borrowing here: `&*array`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0507`.