summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/bugs/issue-88460.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/bugs/issue-88460.stderr')
-rw-r--r--tests/ui/generic-associated-types/bugs/issue-88460.stderr21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/bugs/issue-88460.stderr b/tests/ui/generic-associated-types/bugs/issue-88460.stderr
new file mode 100644
index 000000000..6612c4b49
--- /dev/null
+++ b/tests/ui/generic-associated-types/bugs/issue-88460.stderr
@@ -0,0 +1,21 @@
+error[E0277]: the trait bound `for<'a> <_ as Trait>::Assoc<'a>: Marker` is not satisfied
+ --> $DIR/issue-88460.rs:28:10
+ |
+LL | test(Foo);
+ | ---- ^^^ the trait `for<'a> Marker` is not implemented for `<_ as Trait>::Assoc<'a>`
+ | |
+ | required by a bound introduced by this call
+ |
+ = help: the trait `Marker` is implemented for `()`
+note: required by a bound in `test`
+ --> $DIR/issue-88460.rs:15:27
+ |
+LL | fn test<T>(value: T)
+ | ---- required by a bound in this
+...
+LL | for<'a> T::Assoc<'a>: Marker,
+ | ^^^^^^ required by this bound in `test`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.