rust/tests/ui/consts/recursive-zst-static.default.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
704 B
Plaintext
Raw Normal View History

2020-09-07 10:30:38 -05:00
error[E0391]: cycle detected when const-evaluating + checking `FOO`
--> $DIR/recursive-zst-static.rs:10:1
|
LL | static FOO: () = FOO;
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^
|
2020-09-07 10:30:38 -05:00
note: ...which requires const-evaluating + checking `FOO`...
--> $DIR/recursive-zst-static.rs:10:18
|
LL | static FOO: () = FOO;
| ^^^
2020-09-07 10:30:38 -05:00
= note: ...which again requires const-evaluating + checking `FOO`, completing the cycle
2022-06-18 12:48:44 -05:00
note: cycle used when linting top-level module
--> $DIR/recursive-zst-static.rs:10:1
|
LL | / static FOO: () = FOO;
LL | |
LL | | fn main() {
LL | | FOO
LL | | }
| |_^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0391`.