]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/impl-wf-cycle-2.stderr
Rollup merge of #80172 - camelid:prelude-docs-consistent-punct, r=steveklabnik
[rust.git] / src / test / ui / associated-types / impl-wf-cycle-2.stderr
1 error[E0275]: overflow evaluating the requirement `<(T,) as Grault>::A == _`
2   --> $DIR/impl-wf-cycle-2.rs:7:1
3    |
4 LL | / impl<T: Grault> Grault for (T,)
5 LL | | where
6 LL | |     Self::A: Copy,
7 LL | | {
8 LL | |     type A = ();
9 LL | |
10 LL | | }
11    | |_^
12    |
13    = note: required because of the requirements on the impl of `Grault` for `(T,)`
14
15 error[E0275]: overflow evaluating the requirement `<(T,) as Grault>::A == _`
16   --> $DIR/impl-wf-cycle-2.rs:11:5
17    |
18 LL |     type A = ();
19    |     ^^^^^^^^^^^^
20    |
21    = note: required because of the requirements on the impl of `Grault` for `(T,)`
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0275`.