]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12511.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-12511.stderr
1 error[E0391]: cycle detected when computing the supertraits of `t1`
2   --> $DIR/issue-12511.rs:11:12
3    |
4 LL | trait t1 : t2 {
5    |            ^^
6    |
7 note: ...which requires computing the supertraits of `t2`...
8   --> $DIR/issue-12511.rs:15:12
9    |
10 LL | trait t2 : t1 {
11    |            ^^
12    = note: ...which again requires computing the supertraits of `t1`, completing the cycle
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0391`.