This commit updates the generic parameter re-ordering diagnostic to only mention const generics if the feature is enabled.
8 lines
271 B
Text
8 lines
271 B
Text
error: lifetime parameters must be declared prior to type parameters
|
|
--> $DIR/issue-14303-struct.rs:1:17
|
|
|
|
|
LL | struct X<'a, T, 'b> {
|
|
| --------^^- help: reorder the parameters: lifetimes, then types: `<'a, 'b, T>`
|
|
|
|
error: aborting due to previous error
|
|
|