rust/src/test/ui/parser/lifetime-in-pattern.stderr

15 lines
372 B
Text
Raw Normal View History

2018-10-20 23:36:17 +03:00
error: unexpected lifetime `'a` in pattern
--> $DIR/lifetime-in-pattern.rs:1:10
2018-10-20 23:36:17 +03:00
|
LL | fn test(&'a str) {
| ^^ help: remove the lifetime
2018-10-20 23:36:17 +03:00
error: expected one of `:`, `@`, or `|`, found `)`
--> $DIR/lifetime-in-pattern.rs:1:16
|
LL | fn test(&'a str) {
| ^ expected one of `:`, `@`, or `|`
error: aborting due to 2 previous errors
2018-10-20 23:36:17 +03:00