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