1error: lifetime parameters must be declared prior to type parameters
2  --> $DIR/issue-14303-trait.rs:1:18
3   |
4LL | trait Foo<'a, T, 'b> {}
5   |          --------^^- help: reorder the parameters: lifetimes, then types, then consts: `<'a, 'b, T>`
6
7error: aborting due to previous error
8
9