]> git.lizzy.rs Git - rust.git/blob - src/test/ui/non-constant-expr-for-arr-len.stderr
Rollup merge of #80750 - GuillaumeGomez:cleanup-to_string, r=lzutao
[rust.git] / src / test / ui / non-constant-expr-for-arr-len.stderr
1 error[E0435]: attempt to use a non-constant value in a constant
2   --> $DIR/non-constant-expr-for-arr-len.rs:5:22
3    |
4 LL |     fn bar(n: usize) {
5    |            - help: consider using `const` instead of `let`
6 LL |         let _x = [0; n];
7    |                      ^ non-constant value
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0435`.