]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/generic-associated-types/projection-bound-cycle-generic.stderr
bless tests
[rust.git] / src / test / ui / generic-associated-types / projection-bound-cycle-generic.stderr
index 27c1a82994a53047ce20e885eed5ddb1ba2ec369..aae9a56bb612878da03b2e46c2bdc74c3ff1c175 100644 (file)
@@ -1,14 +1,8 @@
-error[E0275]: overflow evaluating the requirement `<T as Foo>::Item: Sized`
-  --> $DIR/projection-bound-cycle-generic.rs:42:18
+error[E0275]: overflow evaluating the requirement `<Number<T> as Foo>::Item == _`
+  --> $DIR/projection-bound-cycle-generic.rs:23:5
    |
-LL |     type Assoc = OnlySized<<T as Foo>::Item>;
-   |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-   |
-note: required by a bound in `OnlySized`
-  --> $DIR/projection-bound-cycle-generic.rs:26:18
-   |
-LL | struct OnlySized<T> where T: Sized { f: T }
-   |                  ^ required by this bound in `OnlySized`
+LL |     type Item = [T] where [T]: Sized;
+   |     ^^^^^^^^^
 
 error: aborting due to previous error