0270d565d9
This commit updates the generic parameter re-ordering diagnostic to only mention const generics if the feature is enabled.
9 lines
267 B
Plaintext
9 lines
267 B
Plaintext
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
|
|
|