blob: 71fd3cdf72370d5eab2ae27c317f4953b39390a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: unexpected lifetime `'a` in pattern
--> $DIR/lifetime-in-pattern.rs:1:10
|
LL | fn test(&'a str) {
| ^^ help: remove the lifetime
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
|