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

14 lines
407 B
Text
Raw Normal View History

2020-11-21 15:44:06 +01:00
error: expected one of `,`, `:`, `=`, or `>`, found `;`
--> $DIR/lifetime-semicolon.rs:5:30
2018-10-20 23:36:17 +03:00
|
LL | fn foo<'a, 'b>(x: &mut Foo<'a; 'b>) {}
2020-11-21 15:44:06 +01:00
| ^ expected one of `,`, `:`, `=`, or `>`
|
help: you might have meant to end the type parameters here
|
LL | fn foo<'a, 'b>(x: &mut Foo<'a>; 'b>) {}
| +
2018-10-20 23:36:17 +03:00
error: aborting due to previous error