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