2023-07-12 21:59:01 -05:00
|
|
|
error[E0391]: cycle detected when const-evaluating + checking `FOO`
|
2020-06-01 04:17:38 -05:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-07 10:30:38 -05:00
|
|
|
note: ...which requires const-evaluating + checking `FOO`...
|
2022-06-04 14:48:16 -05:00
|
|
|
--> $DIR/recursive-static-definition.rs:1:23
|
2018-08-31 03:40:14 -05:00
|
|
|
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
2022-06-04 14:48:16 -05:00
|
|
|
| ^^^
|
2020-09-07 10:30:38 -05:00
|
|
|
= note: ...which again requires const-evaluating + checking `FOO`, completing the cycle
|
2022-06-18 12:48:44 -05: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() {}
|
|
|
|
| |____________^
|
2023-07-18 20:53:34 -05:00
|
|
|
= 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
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|