summary refs log tree commit diff
path: root/src/test/ui/issue-34373.stderr
blob: ea80111b5e24af1ca8bf83d7849364d0ace20342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0391]: cycle detected when processing `Foo::T`
  --> $DIR/issue-34373.rs:17:30
   |
LL | pub struct Foo<T = Box<Trait<DefaultFoo>>>;  //~ ERROR cycle detected
   |                              ^^^^^^^^^^
   |
note: ...which requires processing `DefaultFoo`...
  --> $DIR/issue-34373.rs:18:19
   |
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`.