summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/defaults/complex-unord-param.min.stderr
blob: 8e8d26a00043d20abf550822b00e45f1f4f601cf (plain)
1
2
3
4
5
6
7
8
error: type parameters must be declared prior to const parameters
  --> $DIR/complex-unord-param.rs:8:41
   |
LL | struct NestedArrays<'a, const N: usize, A: 'a, const M: usize, T:'a =u32> {
   |                    ---------------------^----------------------^--------- help: reorder the parameters: lifetimes, then types, then consts: `<'a, A: 'a, T: 'a = u32, const N: usize, const M: usize>`

error: aborting due to previous error