summary refs log tree commit diff
path: root/src/test/ui/resolve/issue-23305.stderr
blob: 63b7ab78b13e0ef9a5d6b8345180d72c832e2e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0391]: cyclic dependency detected
  --> $DIR/issue-23305.rs:15:12
   |
LL | impl ToNbt<Self> {}
   |            ^^^^ cyclic reference
   |
note: the cycle begins when processing `<impl at $DIR/issue-23305.rs:15:1: 15:20>`...
  --> $DIR/issue-23305.rs:15:1
   |
LL | impl ToNbt<Self> {}
   | ^^^^^^^^^^^^^^^^
   = note: ...which then again requires processing `<impl at $DIR/issue-23305.rs:15:1: 15:20>`, completing the cycle.

error: aborting due to previous error

For more information about this error, try `rustc --explain E0391`.