From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../bounds-on-assoc-in-trait.stderr | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/test/ui/associated-type-bounds/bounds-on-assoc-in-trait.stderr (limited to 'src/test/ui/associated-type-bounds/bounds-on-assoc-in-trait.stderr') diff --git a/src/test/ui/associated-type-bounds/bounds-on-assoc-in-trait.stderr b/src/test/ui/associated-type-bounds/bounds-on-assoc-in-trait.stderr new file mode 100644 index 000000000..4e2313bd4 --- /dev/null +++ b/src/test/ui/associated-type-bounds/bounds-on-assoc-in-trait.stderr @@ -0,0 +1,26 @@ +error[E0277]: `<::A as Iterator>::Item` doesn't implement `Debug` + --> $DIR/bounds-on-assoc-in-trait.rs:18:28 + | +LL | type A: Iterator; + | ^^^^^ `<::A as Iterator>::Item` cannot be formatted using `{:?}` because it doesn't implement `Debug` + | + = help: the trait `Debug` is not implemented for `<::A as Iterator>::Item` +help: consider further restricting the associated type + | +LL | trait Case1 where <::A as Iterator>::Item: Debug { + | +++++++++++++++++++++++++++++++++++++++++++++++++++ + +error[E0277]: the trait bound `<::Out as Baz>::Assoc: Default` is not satisfied + --> $DIR/bounds-on-assoc-in-trait.rs:35:38 + | +LL | pub trait Foo { type Out: Baz; } + | ^^^^^^^ the trait `Default` is not implemented for `<::Out as Baz>::Assoc` + | +help: consider further restricting the associated type + | +LL | pub trait Foo where <::Out as Baz>::Assoc: Default { type Out: Baz; } + | +++++++++++++++++++++++++++++++++++++++++++++++++ + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0277`. -- cgit v1.2.3