rust/tests/ui/parser/lifetime-in-pattern.stderr
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

36 lines
852 B
Plaintext

error: unexpected lifetime `'a` in pattern
--> $DIR/lifetime-in-pattern.rs:1:10
|
LL | fn test(&'a str) {
| ^^
|
help: remove the lifetime
|
LL - fn test(&'a str) {
LL + fn test(&str) {
|
error: expected one of `:`, `@`, or `|`, found `)`
--> $DIR/lifetime-in-pattern.rs:1:16
|
LL | fn test(&'a str) {
| ^ expected one of `:`, `@`, or `|`
|
= note: anonymous parameters are removed in the 2018 edition (see RFC 1685)
help: if this is a `self` type, give it a parameter name
|
LL | fn test(self: &'a str) {
| +++++
help: if this is a parameter name, give it a type
|
LL - fn test(&'a str) {
LL + fn test(str: &TypeName) {
|
help: if this is a type, explicitly ignore the parameter name
|
LL | fn test(_: &'a str) {
| ++
error: aborting due to 2 previous errors