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