]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-14303-trait.stderr
Rollup merge of #79662 - bjorn3:move_more_code_out_of_codegen_backend, r=oli-obk
[rust.git] / src / test / ui / parser / issue-14303-trait.stderr
1 error: lifetime parameters must be declared prior to type parameters
2   --> $DIR/issue-14303-trait.rs:1:18
3    |
4 LL | trait Foo<'a, T, 'b> {}
5    |          --------^^- help: reorder the parameters: lifetimes, then types, then consts: `<'a, 'b, T>`
6
7 error: aborting due to previous error
8