mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
375 B
Plaintext
14 lines
375 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 previous error
|
|
|