summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/issue-102114.current.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/issue-102114.current.stderr')
-rw-r--r--tests/ui/generic-associated-types/issue-102114.current.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/issue-102114.current.stderr b/tests/ui/generic-associated-types/issue-102114.current.stderr
new file mode 100644
index 000000000..6e7a0b1f6
--- /dev/null
+++ b/tests/ui/generic-associated-types/issue-102114.current.stderr
@@ -0,0 +1,12 @@
+error[E0049]: type `B` has 1 type parameter but its trait declaration has 0 type parameters
+ --> $DIR/issue-102114.rs:14:12
+ |
+LL | type B<'b>;
+ | -- expected 0 type parameters
+...
+LL | type B<T> = Wrapper<T>;
+ | ^ found 1 type parameter
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0049`.