blob: a1953396153e0cb6ba2d0eda42ffec7b14781806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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: move the lifetime parameter prior to the first type parameter
|
LL | impl<'a, 'b, T> X<T> {}
| ^^^ --
error: aborting due to previous error
|