2020-05-31 15:11:51 +00:00
|
|
|
error[E0391]: cycle detected when computing type of `Foo::T`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-34373.rs:7:30
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | pub struct Foo<T = Box<Trait<DefaultFoo>>>;
|
2018-07-15 21:11:54 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
2021-07-21 01:06:39 +00:00
|
|
|
note: ...which requires expanding type alias `DefaultFoo`...
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-34373.rs:8:19
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | type DefaultFoo = Foo;
|
|
|
|
| ^^^
|
2020-05-31 15:11:51 +00:00
|
|
|
= note: ...which again requires computing type of `Foo::T`, completing the cycle
|
2019-01-01 18:08:25 +00:00
|
|
|
note: cycle used when collecting item types in top-level module
|
|
|
|
--> $DIR/issue-34373.rs:1:1
|
|
|
|
|
|
|
|
|
LL | / #![allow(warnings)]
|
|
|
|
LL | |
|
|
|
|
LL | | trait Trait<T> {
|
|
|
|
LL | | fn foo(_: T) {}
|
|
|
|
... |
|
|
|
|
LL | | fn main() {
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|