2022-05-01 12:05:35 -05:00
|
|
|
error: expected one of `,` or `>`, found `;`
|
2022-03-27 01:05:18 -05:00
|
|
|
--> $DIR/lifetime-semicolon.rs:7:31
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2022-03-27 01:05:18 -05:00
|
|
|
LL | fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {}
|
2022-05-01 12:05:35 -05:00
|
|
|
| ^ expected one of `,` or `>`
|
2022-03-01 13:40:48 -06:00
|
|
|
|
|
2022-03-27 01:05:18 -05:00
|
|
|
help: use a comma to separate type parameters
|
2022-03-01 13:40:48 -06:00
|
|
|
|
|
2022-03-27 01:05:18 -05:00
|
|
|
LL | fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {}
|
|
|
|
| ~
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|