]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-52060.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / issue-52060.stderr
1 error[E0013]: constants cannot refer to statics
2   --> $DIR/issue-52060.rs:4:26
3    |
4 LL | static B: [u32; 1] = [0; A.len()];
5    |                          ^
6    |
7    = help: consider extracting the value of the `static` to a `const`, and referring to that
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0013`.