]> git.lizzy.rs Git - rust.git/blob - src/test/ui/recursion/recursive-static-definition.stderr
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
[rust.git] / src / test / ui / recursion / recursive-static-definition.stderr
1 error[E0391]: cycle detected when const-evaluating + checking `FOO`
2   --> $DIR/recursive-static-definition.rs:1:1
3    |
4 LL | pub static FOO: u32 = FOO;
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: ...which requires const-evaluating + checking `FOO`...
8   --> $DIR/recursive-static-definition.rs:1:1
9    |
10 LL | pub static FOO: u32 = FOO;
11    | ^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = note: ...which again requires const-evaluating + checking `FOO`, completing the cycle
13    = note: cycle used when running analysis passes on this crate
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0391`.