summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/issue-83556.stderr
blob: 93affaffe60c39ac21f2d05ba64d964e05c0f3a0 (plain)
1
2
3
4
5
6
7
8
error: lifetime parameters must be declared prior to type and const parameters
  --> $DIR/issue-83556.rs:1:15
   |
LL | struct Foo<T, 'a>(&'a ());
   |           ----^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, T>`

error: aborting due to previous error