]> git.lizzy.rs Git - rust.git/blob - tests/ui/non-constant-expr-for-arr-len.stderr
Rollup merge of #106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
[rust.git] / tests / 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    |            - this would need to be a `const`
6 LL |         let _x = [0; n];
7    |                      ^
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0435`.