]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-dependent-def-issue-49241.stderr
Auto merge of #97842 - notriddle:notriddle/tuple-docs, r=jsha,GuillaumeGomez
[rust.git] / src / test / ui / type / type-dependent-def-issue-49241.stderr
1 error[E0435]: attempt to use a non-constant value in a constant
2   --> $DIR/type-dependent-def-issue-49241.rs:3:22
3    |
4 LL |     const l: usize = v.count();
5    |     -------          ^ non-constant value
6    |     |
7    |     help: consider using `let` instead of `const`: `let l`
8
9 error[E0080]: evaluation of constant value failed
10   --> $DIR/type-dependent-def-issue-49241.rs:4:18
11    |
12 LL |     let s: [u32; l] = v.into_iter().collect();
13    |                  ^ referenced constant has errors
14
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0080, E0435.
18 For more information about an error, try `rustc --explain E0080`.