2023-07-12 22:59:01 -04:00
|
|
|
error[E0391]: cycle detected when const-evaluating + checking `FOO`
|
2020-06-01 11:17:38 +02:00
|
|
|
--> $DIR/recursive-zst-static.rs:10:1
|
2020-04-23 12:53:05 +02:00
|
|
|
|
|
|
|
|
LL | static FOO: () = FOO;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^^^
|
2020-04-23 12:53:05 +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-zst-static.rs:10:18
|
2020-04-23 12:53:05 +02:00
|
|
|
|
|
|
|
|
LL | static FOO: () = 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
|
2022-06-18 19:48:44 +02:00
|
|
|
note: cycle used when linting top-level module
|
|
|
|
--> $DIR/recursive-zst-static.rs:10:1
|
|
|
|
|
|
|
|
|
LL | / static FOO: () = FOO;
|
|
|
|
LL | |
|
|
|
|
LL | | fn main() {
|
|
|
|
LL | | FOO
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2023-07-18 21:53:34 -04: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
|
2020-04-23 12:53:05 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0391`.
|