From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/specialization/issue-59435.stderr | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/ui/specialization/issue-59435.stderr (limited to 'tests/ui/specialization/issue-59435.stderr') diff --git a/tests/ui/specialization/issue-59435.stderr b/tests/ui/specialization/issue-59435.stderr new file mode 100644 index 000000000..211459406 --- /dev/null +++ b/tests/ui/specialization/issue-59435.stderr @@ -0,0 +1,19 @@ +error[E0277]: the trait bound `MyStruct: Default` is not satisfied + --> $DIR/issue-59435.rs:11:27 + | +LL | default type MyType = MyStruct; + | ^^^^^^^^ the trait `Default` is not implemented for `MyStruct` + | +note: required by a bound in `MyTrait::MyType` + --> $DIR/issue-59435.rs:7:18 + | +LL | type MyType: Default; + | ^^^^^^^ required by this bound in `MyTrait::MyType` +help: consider annotating `MyStruct` with `#[derive(Default)]` + | +LL | #[derive(Default)] + | + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0277`. -- cgit v1.2.3