summary refs log tree commit diff
path: root/src/test/ui/parser/issue-14303-struct.stderr
blob: c6b33120c18f046094b9501c4140c3871fd4c3cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: lifetime parameters must be declared prior to type parameters
  --> $DIR/issue-14303-struct.rs:13:17
   |
LL | struct X<'a, T, 'b> {
   |                 ^^
help: move the lifetime parameter prior to the first type parameter
   |
LL | struct X<'a, 'b, T> {
   |              ^^^ --

error: aborting due to previous error