15 lines
586 B
Text
15 lines
586 B
Text
error[E0080]: encountered static that tried to initialize itself with itself
|
|
--> $DIR/recursive-static-definition.rs:1:23
|
|
|
|
|
LL | pub static FOO: u32 = FOO;
|
|
| ^^^ evaluation of static initializer failed here
|
|
|
|
error[E0080]: encountered static that tried to initialize itself with itself
|
|
--> $DIR/recursive-static-definition.rs:9:23
|
|
|
|
|
LL | pub static BAR: Foo = BAR;
|
|
| ^^^ evaluation of static initializer failed here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|