Files
rust/src/test/ui/parser/issue-14303-enum.stderr
David Wood 0270d565d9 Only mention const generics if enabled.
This commit updates the generic parameter re-ordering diagnostic to only
mention const generics if the feature is enabled.
2019-03-31 00:14:21 +01:00

9 lines
265 B
Plaintext

error: lifetime parameters must be declared prior to type parameters
--> $DIR/issue-14303-enum.rs:1:15
|
LL | enum X<'a, T, 'b> {
| --------^^- help: reorder the parameters: lifetimes, then types: `<'a, 'b, T>`
error: aborting due to previous error