2020-11-21 15:44:06 +01:00
|
|
|
error: expected one of `,`, `:`, `=`, or `>`, found `;`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/lifetime-semicolon.rs:5:30
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | fn foo<'a, 'b>(x: &mut Foo<'a; 'b>) {}
|
2020-11-21 15:44:06 +01:00
|
|
|
| ^ expected one of `,`, `:`, `=`, or `>`
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | fn foo<'a, 'b>(x: &mut Foo<'a>; 'b>) {}
|
|
|
|
| +
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|