blob: 56cd4fb381038090802bee4966c071706464a20f (
plain)
1
2
3
4
5
6
7
8
|
error: lifetime parameters must be declared prior to type parameters
--> $DIR/issue-14303-impl.rs:3:13
|
LL | impl<'a, T, 'b> X<T> {}
| --------^^- help: reorder the parameters: lifetimes, then types: `<'a, 'b, T>`
error: aborting due to previous error
|