summaryrefslogtreecommitdiffstats
path: root/tests/ui/derives/deriving-with-repr-packed-move-errors.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
commitcec1877e180393eba0f6ddb0cf97bf3a791631c7 (patch)
tree47b4dac2a9dd9a40c30c251b4d4a72d7ccf77e9f /tests/ui/derives/deriving-with-repr-packed-move-errors.stderr
parentAdding debian version 1.74.1+dfsg1-1. (diff)
downloadrustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.tar.xz
rustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/derives/deriving-with-repr-packed-move-errors.stderr')
-rw-r--r--tests/ui/derives/deriving-with-repr-packed-move-errors.stderr174
1 files changed, 174 insertions, 0 deletions
diff --git a/tests/ui/derives/deriving-with-repr-packed-move-errors.stderr b/tests/ui/derives/deriving-with-repr-packed-move-errors.stderr
new file mode 100644
index 000000000..c538061b3
--- /dev/null
+++ b/tests/ui/derives/deriving-with-repr-packed-move-errors.stderr
@@ -0,0 +1,174 @@
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | ----- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(Debug)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | --------- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(PartialEq)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | --------- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(PartialEq)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | ---------- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(PartialOrd)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | ---------- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(PartialOrd)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | --- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(Ord)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | --- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(Ord)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | ---- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(Hash)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:13:16
+ |
+LL | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]
+ | ----- in this derive macro expansion
+LL | struct StructA(String);
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+ |
+ = note: `#[derive(Clone)]` triggers a move because taking references to the fields of a packed struct is undefined behaviour
+ = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:28:9
+ |
+LL | self.0
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:38:20
+ |
+LL | let x = &{ self.0 };
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:45:12
+ |
+LL | ({ self.0 }) == ({ other.0 })
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:45:28
+ |
+LL | ({ self.0 }) == ({ other.0 })
+ | ^^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:53:36
+ |
+LL | PartialOrd::partial_cmp(&{ self.0 }, &{ other.0 })
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:53:49
+ |
+LL | PartialOrd::partial_cmp(&{ self.0 }, &{ other.0 })
+ | ^^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:68:20
+ |
+LL | let x = &{ self.0 };
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:75:12
+ |
+LL | ({ self.0 }) == ({ other.0 })
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:75:28
+ |
+LL | ({ self.0 }) == ({ other.0 })
+ | ^^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `self` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:83:36
+ |
+LL | PartialOrd::partial_cmp(&{ self.0 }, &{ other.0 })
+ | ^^^^^^ move occurs because `self.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `other` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:83:49
+ |
+LL | PartialOrd::partial_cmp(&{ self.0 }, &{ other.0 })
+ | ^^^^^^^ move occurs because `other.0` has type `String`, which does not implement the `Copy` trait
+
+error[E0507]: cannot move out of `arg` which is behind a shared reference
+ --> $DIR/deriving-with-repr-packed-move-errors.rs:92:5
+ |
+LL | arg.0
+ | ^^^^^ move occurs because `arg.0` has type `String`, which does not implement the `Copy` trait
+
+error: aborting due to 21 previous errors
+
+For more information about this error, try `rustc --explain E0507`.