summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-dependent-def-issue-49241.stderr
blob: 02f267c6c8d73419c7cb6da9f6f5c78a8109051c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0435]: attempt to use a non-constant value in a constant
  --> $DIR/type-dependent-def-issue-49241.rs:3:22
   |
LL |     const l: usize = v.count();
   |     -------          ^ non-constant value
   |     |
   |     help: consider using `let` instead of `const`: `let l`

error[E0080]: evaluation of constant value failed
  --> $DIR/type-dependent-def-issue-49241.rs:4:18
   |
LL |     let s: [u32; l] = v.into_iter().collect();
   |                  ^ referenced constant has errors

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0080, E0435.
For more information about an error, try `rustc --explain E0080`.