]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/recursive-zst-static.unleash.stderr
Auto merge of #96837 - tmiasko:stdio-fcntl, r=joshtriplett
[rust.git] / src / test / ui / consts / recursive-zst-static.unleash.stderr
1 error[E0391]: cycle detected when const-evaluating + checking `FOO`
2   --> $DIR/recursive-zst-static.rs:10:1
3    |
4 LL | static FOO: () = FOO;
5    | ^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: ...which requires const-evaluating + checking `FOO`...
8   --> $DIR/recursive-zst-static.rs:10:18
9    |
10 LL | static FOO: () = 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`.