summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/bugs/issue-80626.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/bugs/issue-80626.stderr')
-rw-r--r--src/test/ui/generic-associated-types/bugs/issue-80626.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/generic-associated-types/bugs/issue-80626.stderr b/src/test/ui/generic-associated-types/bugs/issue-80626.stderr
new file mode 100644
index 000000000..487b83dfa
--- /dev/null
+++ b/src/test/ui/generic-associated-types/bugs/issue-80626.stderr
@@ -0,0 +1,15 @@
+error[E0275]: overflow evaluating the requirement `LinkedList<A>: Sized`
+ --> $DIR/issue-80626.rs:14:10
+ |
+LL | Next(A::Allocated<Self>)
+ | ^^^^^^^^^^^^^^^^^^
+ |
+note: required by a bound in `Allocator::Allocated`
+ --> $DIR/issue-80626.rs:9:20
+ |
+LL | type Allocated<T>;
+ | ^ required by this bound in `Allocator::Allocated`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0275`.