]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-17252.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-17252.stderr
1 error[E0391]: cycle detected when const-evaluating + checking `FOO`
2 --> $DIR/issue-17252.rs:1:1
3 |
4 LL | const FOO: usize = FOO;
5 | ^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: ...which immediately requires const-evaluating + checking `FOO` again
8 note: cycle used when const-evaluating + checking `main::{constant#0}`
9 --> $DIR/issue-17252.rs:4:18
10 |
11 LL | let _x: [u8; FOO]; // caused stack overflow prior to fix
12 | ^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0391`.