summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr')
-rw-r--r--src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr b/src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr
new file mode 100644
index 000000000..2b57c439f
--- /dev/null
+++ b/src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr
@@ -0,0 +1,15 @@
+error[E0275]: overflow evaluating the requirement `<T as Foo>::Item: Sized`
+ --> $DIR/projection-bound-cycle-generic.rs:44:18
+ |
+LL | type Assoc = OnlySized<<T as Foo>::Item>;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+note: required by a bound in `OnlySized`
+ --> $DIR/projection-bound-cycle-generic.rs:28:18
+ |
+LL | struct OnlySized<T> where T: Sized { f: T }
+ | ^ required by this bound in `OnlySized`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0275`.