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