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/E0276.stderr | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/ui/error-codes/E0276.stderr (limited to 'tests/ui/error-codes/E0276.stderr') diff --git a/tests/ui/error-codes/E0276.stderr b/tests/ui/error-codes/E0276.stderr new file mode 100644 index 000000000..1013f041b --- /dev/null +++ b/tests/ui/error-codes/E0276.stderr @@ -0,0 +1,12 @@ +error[E0276]: impl has stricter requirements than trait + --> $DIR/E0276.rs:6:30 + | +LL | fn foo(x: T); + | ---------------- definition of `foo` from trait +... +LL | fn foo(x: T) where T: Copy {} + | ^^^^ impl has extra requirement `T: Copy` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0276`. -- cgit v1.2.3