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/issues/issue-3214.stderr | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/ui/issues/issue-3214.stderr (limited to 'tests/ui/issues/issue-3214.stderr') diff --git a/tests/ui/issues/issue-3214.stderr b/tests/ui/issues/issue-3214.stderr new file mode 100644 index 000000000..aa0b5ce64 --- /dev/null +++ b/tests/ui/issues/issue-3214.stderr @@ -0,0 +1,28 @@ +error[E0401]: can't use generic parameters from outer function + --> $DIR/issue-3214.rs:3:12 + | +LL | fn foo() { + | - type parameter from outer function +LL | struct Foo { + | - help: try using a local generic parameter instead: `` +LL | x: T, + | ^ use of generic parameter from outer function + +error[E0107]: this struct takes 0 generic arguments but 1 generic argument was supplied + --> $DIR/issue-3214.rs:6:22 + | +LL | impl Drop for Foo { + | ^^^--- help: remove these generics + | | + | expected 0 generic arguments + | +note: struct defined here, with 0 generic parameters + --> $DIR/issue-3214.rs:2:12 + | +LL | struct Foo { + | ^^^ + +error: aborting due to 2 previous errors + +Some errors have detailed explanations: E0107, E0401. +For more information about an error, try `rustc --explain E0107`. -- cgit v1.2.3