summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-14303-enum.stderr
blob: 55cef4cabacfe84b2f1b2d28bcb067142d1c3811 (plain)
1
2
3
4
5
6
7
8
error: lifetime parameters must be declared prior to type parameters
  --> $DIR/issue-14303-enum.rs:1:15
   |
LL | enum X<'a, T, 'b> {
   |       --------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, 'b, T>`

error: aborting due to previous error