summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/defaults-unsound-62211-1.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/associated-types/defaults-unsound-62211-1.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/associated-types/defaults-unsound-62211-1.stderr')
-rw-r--r--src/test/ui/associated-types/defaults-unsound-62211-1.stderr68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/test/ui/associated-types/defaults-unsound-62211-1.stderr b/src/test/ui/associated-types/defaults-unsound-62211-1.stderr
deleted file mode 100644
index 5cd1cb4a1..000000000
--- a/src/test/ui/associated-types/defaults-unsound-62211-1.stderr
+++ /dev/null
@@ -1,68 +0,0 @@
-error[E0277]: `Self` doesn't implement `std::fmt::Display`
- --> $DIR/defaults-unsound-62211-1.rs:20:96
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^ `Self` cannot be formatted with the default formatter
- |
- = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
-note: required by a bound in `UncheckedCopy::Output`
- --> $DIR/defaults-unsound-62211-1.rs:20:86
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^^^^ required by this bound in `UncheckedCopy::Output`
-help: consider further restricting `Self`
- |
-LL | trait UncheckedCopy: Sized + std::fmt::Display {
- | +++++++++++++++++++
-
-error[E0277]: cannot add-assign `&'static str` to `Self`
- --> $DIR/defaults-unsound-62211-1.rs:20:96
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^ no implementation for `Self += &'static str`
- |
-note: required by a bound in `UncheckedCopy::Output`
- --> $DIR/defaults-unsound-62211-1.rs:20:47
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `UncheckedCopy::Output`
-help: consider further restricting `Self`
- |
-LL | trait UncheckedCopy: Sized + AddAssign<&'static str> {
- | +++++++++++++++++++++++++
-
-error[E0277]: the trait bound `Self: Deref` is not satisfied
- --> $DIR/defaults-unsound-62211-1.rs:20:96
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^ the trait `Deref` is not implemented for `Self`
- |
-note: required by a bound in `UncheckedCopy::Output`
- --> $DIR/defaults-unsound-62211-1.rs:20:25
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^^^^^^^^^^^^^^^^ required by this bound in `UncheckedCopy::Output`
-help: consider further restricting `Self`
- |
-LL | trait UncheckedCopy: Sized + Deref {
- | +++++++
-
-error[E0277]: the trait bound `Self: Copy` is not satisfied
- --> $DIR/defaults-unsound-62211-1.rs:20:96
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^ the trait `Copy` is not implemented for `Self`
- |
-note: required by a bound in `UncheckedCopy::Output`
- --> $DIR/defaults-unsound-62211-1.rs:20:18
- |
-LL | type Output: Copy + Deref<Target = str> + AddAssign<&'static str> + From<Self> + Display = Self;
- | ^^^^ required by this bound in `UncheckedCopy::Output`
-help: consider further restricting `Self`
- |
-LL | trait UncheckedCopy: Sized + Copy {
- | ++++++
-
-error: aborting due to 4 previous errors
-
-For more information about this error, try `rustc --explain E0277`.