mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
16 lines
572 B
Plaintext
16 lines
572 B
Plaintext
error[E0080]: encountered static that tried to access itself during initialization
|
|
--> $DIR/recursive-static-definition.rs:1:23
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
|
| ^^^ evaluation of `FOO` failed here
|
|
|
|
error[E0080]: encountered static that tried to access itself during initialization
|
|
--> $DIR/recursive-static-definition.rs:9:23
|
|
|
|
|
LL | pub static BAR: Foo = BAR;
|
|
| ^^^ evaluation of `BAR` failed here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|