```
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;
|
```
26 lines
555 B
Plaintext
26 lines
555 B
Plaintext
error: expected one of `:`, `;`, or `=`, found `a`
|
|
--> $DIR/static-mut.rs:1:13
|
|
|
|
|
LL | static muta a: u8 = 0;
|
|
| ^ expected one of `:`, `;`, or `=`
|
|
|
|
|
help: there is a keyword `mut` with a similar name
|
|
|
|
|
LL - static muta a: u8 = 0;
|
|
LL + static mut a: u8 = 0;
|
|
|
|
|
|
|
error: missing type for `static` item
|
|
--> $DIR/static-mut.rs:1:12
|
|
|
|
|
LL | static muta a: u8 = 0;
|
|
| ^
|
|
|
|
|
help: provide a type for the item
|
|
|
|
|
LL | static muta: <type> a: u8 = 0;
|
|
| ++++++++
|
|
|
|
error: aborting due to 2 previous errors
|
|
|