From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/error-codes/E0404.stderr | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/ui/error-codes/E0404.stderr (limited to 'tests/ui/error-codes/E0404.stderr') diff --git a/tests/ui/error-codes/E0404.stderr b/tests/ui/error-codes/E0404.stderr new file mode 100644 index 000000000..4ccb6c572 --- /dev/null +++ b/tests/ui/error-codes/E0404.stderr @@ -0,0 +1,15 @@ +error[E0404]: expected trait, found struct `Foo` + --> $DIR/E0404.rs:4:6 + | +LL | impl Foo for Bar {} + | ^^^ not a trait + +error[E0404]: expected trait, found struct `Foo` + --> $DIR/E0404.rs:8:11 + | +LL | fn baz(_: T) {} + | ^^^ not a trait + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0404`. -- cgit v1.2.3