summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-out-of-slice-2.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/moves/move-out-of-slice-2.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/moves/move-out-of-slice-2.stderr')
-rw-r--r--src/test/ui/moves/move-out-of-slice-2.stderr60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/test/ui/moves/move-out-of-slice-2.stderr b/src/test/ui/moves/move-out-of-slice-2.stderr
new file mode 100644
index 000000000..9a863bf31
--- /dev/null
+++ b/src/test/ui/moves/move-out-of-slice-2.stderr
@@ -0,0 +1,60 @@
+warning: the feature `unsized_locals` is incomplete and may not be safe to use and/or cause compiler crashes
+ --> $DIR/move-out-of-slice-2.rs:1:12
+ |
+LL | #![feature(unsized_locals)]
+ | ^^^^^^^^^^^^^^
+ |
+ = note: `#[warn(incomplete_features)]` on by default
+ = note: see issue #48055 <https://github.com/rust-lang/rust/issues/48055> for more information
+
+error[E0508]: cannot move out of type `[A]`, a non-copy slice
+ --> $DIR/move-out-of-slice-2.rs:10:11
+ |
+LL | match *a {
+ | ^^ cannot move out of here
+LL |
+LL | [a @ ..] => {}
+ | ------
+ | |
+ | data moved here
+ | move occurs because `a` has type `[A]`, which does not implement the `Copy` trait
+
+error[E0508]: cannot move out of type `[A]`, a non-copy slice
+ --> $DIR/move-out-of-slice-2.rs:16:11
+ |
+LL | match *b {
+ | ^^ cannot move out of here
+LL |
+LL | [_, _, b @ .., _] => {}
+ | ------
+ | |
+ | data moved here
+ | move occurs because `b` has type `[A]`, which does not implement the `Copy` trait
+
+error[E0508]: cannot move out of type `[C]`, a non-copy slice
+ --> $DIR/move-out-of-slice-2.rs:24:11
+ |
+LL | match *c {
+ | ^^ cannot move out of here
+LL |
+LL | [c @ ..] => {}
+ | ------
+ | |
+ | data moved here
+ | move occurs because `c` has type `[C]`, which does not implement the `Copy` trait
+
+error[E0508]: cannot move out of type `[C]`, a non-copy slice
+ --> $DIR/move-out-of-slice-2.rs:30:11
+ |
+LL | match *d {
+ | ^^ cannot move out of here
+LL |
+LL | [_, _, d @ .., _] => {}
+ | ------
+ | |
+ | data moved here
+ | move occurs because `d` has type `[C]`, which does not implement the `Copy` trait
+
+error: aborting due to 4 previous errors; 1 warning emitted
+
+For more information about this error, try `rustc --explain E0508`.