rust/src/test/ui/issues/issue-59508.stderr

9 lines
316 B
Plaintext
Raw Normal View History

error: lifetime parameters must be declared prior to type parameters
--> $DIR/issue-59508.rs:10:25
|
LL | pub fn do_things<T, 'a, 'b: 'a>() {
2020-11-17 11:44:21 +01:00
| ----^^--^^----- help: reorder the parameters: lifetimes, then types, then consts: `<'a, 'b: 'a, T>`
error: aborting due to previous error