summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/associated-const-type-parameter-arrays.stderr
blob: 46a54a12d624519aa1fab7e9d2594bab846d1d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: generic parameters may not be used in const operations
  --> $DIR/associated-const-type-parameter-arrays.rs:16:24
   |
LL |     let _array: [u32; <A as Foo>::Y];
   |                        ^ cannot perform const operation using `A`
   |
   = note: type parameters may not be used in const expressions
   = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions

error: aborting due to previous error