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 --- .../gat-trait-path-missing-lifetime.stderr | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/test/ui/generic-associated-types/gat-trait-path-missing-lifetime.stderr (limited to 'src/test/ui/generic-associated-types/gat-trait-path-missing-lifetime.stderr') diff --git a/src/test/ui/generic-associated-types/gat-trait-path-missing-lifetime.stderr b/src/test/ui/generic-associated-types/gat-trait-path-missing-lifetime.stderr new file mode 100644 index 000000000..aeb9238de --- /dev/null +++ b/src/test/ui/generic-associated-types/gat-trait-path-missing-lifetime.stderr @@ -0,0 +1,35 @@ +error[E0107]: missing generics for associated type `X::Y` + --> $DIR/gat-trait-path-missing-lifetime.rs:10:20 + | +LL | fn foo<'a, T1: X>(t : T1) -> T1::Y<'a> { + | ^ expected 1 lifetime argument + | +note: associated type defined here, with 1 lifetime parameter: `'a` + --> $DIR/gat-trait-path-missing-lifetime.rs:4:8 + | +LL | type Y<'a>; + | ^ -- +help: add missing lifetime argument + | +LL | fn foo<'a, T1: X = T1>>(t : T1) -> T1::Y<'a> { + | ~~~~~ + +error[E0107]: missing generics for associated type `X::Y` + --> $DIR/gat-trait-path-missing-lifetime.rs:10:20 + | +LL | fn foo<'a, T1: X>(t : T1) -> T1::Y<'a> { + | ^ expected 1 lifetime argument + | +note: associated type defined here, with 1 lifetime parameter: `'a` + --> $DIR/gat-trait-path-missing-lifetime.rs:4:8 + | +LL | type Y<'a>; + | ^ -- +help: add missing lifetime argument + | +LL | fn foo<'a, T1: X = T1>>(t : T1) -> T1::Y<'a> { + | ~~~~~ + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0107`. -- cgit v1.2.3