summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr')
-rw-r--r--tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr b/tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr
new file mode 100644
index 000000000..fdd6d305a
--- /dev/null
+++ b/tests/ui/generic-associated-types/parameter_number_and_kind_impl.stderr
@@ -0,0 +1,62 @@
+error[E0195]: lifetime parameters or bounds on type `A` do not match the trait declaration
+ --> $DIR/parameter_number_and_kind_impl.rs:14:11
+ |
+LL | type A<'a>;
+ | ---- lifetimes in impl do not match this type in trait
+...
+LL | type A = u32;
+ | ^ lifetimes do not match type in trait
+
+error[E0049]: type `B` has 1 type parameter but its trait declaration has 0 type parameters
+ --> $DIR/parameter_number_and_kind_impl.rs:16:12
+ |
+LL | type B<'a, 'b>;
+ | -- --
+ | |
+ | expected 0 type parameters
+...
+LL | type B<'a, T> = Vec<T>;
+ | ^^ ^
+ | |
+ | found 1 type parameter
+
+error[E0195]: lifetime parameters or bounds on type `C` do not match the trait declaration
+ --> $DIR/parameter_number_and_kind_impl.rs:18:11
+ |
+LL | type C;
+ | - lifetimes in impl do not match this type in trait
+...
+LL | type C<'a> = u32;
+ | ^^^^ lifetimes do not match type in trait
+
+error[E0049]: type `A` has 1 type parameter but its trait declaration has 0 type parameters
+ --> $DIR/parameter_number_and_kind_impl.rs:25:12
+ |
+LL | type A<'a>;
+ | -- expected 0 type parameters
+...
+LL | type A<T> = u32;
+ | ^ found 1 type parameter
+
+error[E0195]: lifetime parameters or bounds on type `B` do not match the trait declaration
+ --> $DIR/parameter_number_and_kind_impl.rs:27:11
+ |
+LL | type B<'a, 'b>;
+ | -------- lifetimes in impl do not match this type in trait
+...
+LL | type B<'a> = u32;
+ | ^^^^ lifetimes do not match type in trait
+
+error[E0049]: type `C` has 1 type parameter but its trait declaration has 0 type parameters
+ --> $DIR/parameter_number_and_kind_impl.rs:29:12
+ |
+LL | type C;
+ | - expected 0 type parameters
+...
+LL | type C<T> = T;
+ | ^ found 1 type parameter
+
+error: aborting due to 6 previous errors
+
+Some errors have detailed explanations: E0049, E0195.
+For more information about an error, try `rustc --explain E0049`.