mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00

``` 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; | ```
36 lines
852 B
Plaintext
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
|
|
|