rust/src/test/ui/recursion/recursive-static-definition.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
628 B
Plaintext
Raw Normal View History

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