rust/src/test/ui/parser/lifetime-semicolon.stderr

9 lines
257 B
Plaintext
Raw Normal View History

2020-11-21 14:44:06 +00:00
error: expected one of `,`, `:`, `=`, or `>`, found `;`
--> $DIR/lifetime-semicolon.rs:5:30
2018-10-20 20:36:17 +00:00
|
LL | fn foo<'a, 'b>(x: &mut Foo<'a; 'b>) {}
2020-11-21 14:44:06 +00:00
| ^ expected one of `,`, `:`, `=`, or `>`
2018-10-20 20:36:17 +00:00
error: aborting due to previous error