2022-09-09 14:28:57 +02:00
|
|
|
error: lifetime parameters must be declared prior to type and const parameters
|
2020-12-30 11:43:30 -05:00
|
|
|
--> $DIR/issue-80512-param-reordering-with-defaults.rs:3:18
|
|
|
|
|
|
|
|
|
LL | struct S<T = (), 'a>(&'a T);
|
2021-10-23 17:46:47 +01:00
|
|
|
| ---------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, T = ()>`
|
2020-12-30 11:43:30 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|