2025-05-28 10:29:08 +00:00
|
|
|
error[E0080]: modifying a static's initial value from another static's initializer
|
2021-10-05 04:55:57 -04:00
|
|
|
--> $DIR/assign-to-static-within-other-static.rs:8:5
|
2018-11-19 11:19:14 +01:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | FOO = 5;
|
2025-06-07 11:32:09 +02:00
|
|
|
| ^^^^^^^ evaluation of `BOO` failed here
|
2018-11-19 11:19:14 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-19 11:19:14 +01:00
|
|
|
|
2019-11-12 13:20:44 +01:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|