2020-09-07 17:30:38 +02:00
|
|
|
error[E0391]: cycle detected when const-evaluating + checking `FOO`
|
2020-06-01 11:17:38 +02:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2020-06-01 11:17:38 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-07 17:30:38 +02:00
|
|
|
note: ...which requires const-evaluating + checking `FOO`...
|
2022-06-04 15:48:16 -04:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:23
|
2018-08-31 10:40:14 +02:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2022-06-04 15:48:16 -04:00
|
|
|
| ^^^
|
2020-09-07 17:30:38 +02:00
|
|
|
= note: ...which again requires const-evaluating + checking `FOO`, completing the cycle
|
2020-07-31 13:27:54 +02:00
|
|
|
= note: cycle used when running analysis passes on this crate
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|