summary refs log tree commit diff
path: root/src/test/ui/const-generics/defaults/simple-defaults.min.stderr
blob: 59cc6f28af857ffb131fccabc99dba00ff6b788f (plain)
1
2
3
4
5
6
7
8
error: type parameters must be declared prior to const parameters
  --> $DIR/simple-defaults.rs:9:40
   |
LL | struct FixedOutput<'a, const N: usize, T=u32> {
   |                   ---------------------^----- help: reorder the parameters: lifetimes, then types, then consts: `<'a, T, const N: usize>`

error: aborting due to previous error