2018-07-15 16:11:54 -05:00
|
|
|
error[E0391]: cycle detected when processing `Foo::T`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-34373.rs:7:30
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | pub struct Foo<T = Box<Trait<DefaultFoo>>>; //~ ERROR cycle detected
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: ...which requires processing `DefaultFoo`...
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-34373.rs:8:19
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | type DefaultFoo = Foo;
|
|
|
|
| ^^^
|
|
|
|
= note: ...which again requires processing `Foo::T`, completing the cycle
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|