summary refs log tree commit diff
path: root/src/test/ui/parser/issue-14303-impl.stderr
blob: 3b5615d2a9ecab7e55415c4924b1ce5c9c88ea71 (plain)
1
2
3
4
5
6
7
8
error: lifetime parameters must be declared prior to type parameters
  --> $DIR/issue-14303-impl.rs:3:13
   |
LL | impl<'a, T, 'b> X<T> {}
   |     --------^^- help: reorder the parameters: lifetimes, then types, then consts: `<'a, 'b, T>`

error: aborting due to previous error