]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-44239.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / issues / issue-44239.stderr
1 error[E0435]: attempt to use a non-constant value in a constant
2 --> $DIR/issue-44239.rs:8:26
3 |
4 LL | let n: usize = 0;
5 | ----- help: consider using `const` instead of `let`: `const n`
6 ...
7 LL | const N: usize = n;
8 | ^ non-constant value
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0435`.