mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-05 06:21:11 +00:00
14 lines
377 B
Plaintext
14 lines
377 B
Plaintext
error: expected one of `,` or `>`, found `;`
|
|
--> $DIR/lifetime-semicolon.rs:7:31
|
|
|
|
|
LL | fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {}
|
|
| ^ expected one of `,` or `>`
|
|
|
|
|
help: use a comma to separate type parameters
|
|
|
|
|
LL | fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {}
|
|
| ~
|
|
|
|
error: aborting due to 1 previous error
|
|
|