2020-09-07 15:30:38 +00:00
|
|
|
error[E0391]: cycle detected when const-evaluating + checking `FOO`
|
2020-06-01 09:17:38 +00:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2022-02-13 15:27:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-09-07 15:30:38 +00:00
|
|
|
note: ...which requires const-evaluating + checking `FOO`...
|
2022-06-04 19:48:16 +00:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:23
|
2018-08-31 08:40:14 +00:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2022-06-04 19:48:16 +00:00
|
|
|
| ^^^
|
2020-09-07 15:30:38 +00:00
|
|
|
= note: ...which again requires const-evaluating + checking `FOO`, completing the cycle
|
2022-06-18 17:48:44 +00:00
|
|
|
note: cycle used when linting top-level module
|
|
|
|
--> $DIR/recursive-static-definition.rs:1:1
|
|
|
|
|
|
|
|
|
LL | / pub static FOO: u32 = FOO;
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | fn main() {}
|
|
|
|
| |____________^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|