about summary refs log tree commit diff
path: root/tests/ui/parallel-rustc/cycle_crash-issue-135870.stderr
blob: 6e588d1f89466d742269d35f4bff16e9a6498724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0391]: cycle detected when simplifying constant for the type system `FOO`
  --> $DIR/cycle_crash-issue-135870.rs:6:1
   |
LL | const FOO: usize = FOO;
   | ^^^^^^^^^^^^^^^^
   |
note: ...which requires const-evaluating + checking `FOO`...
  --> $DIR/cycle_crash-issue-135870.rs:6:20
   |
LL | const FOO: usize = FOO;
   |                    ^^^
   = note: ...which again requires simplifying constant for the type system `FOO`, completing the cycle
   = note: cycle used when running analysis passes on this crate
   = note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information

error: aborting due to 1 previous error

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