2024-09-01 21:27:43 -05:00
|
|
|
error: expected one of `:`, `;`, or `=`, found `a`
|
|
|
|
--> $DIR/static-mut.rs:1:13
|
|
|
|
|
|
|
|
|
LL | static muta a: u8 = 0;
|
|
|
|
| ^ expected one of `:`, `;`, or `=`
|
2024-09-02 11:43:35 -05:00
|
|
|
|
|
|
|
|
help: there is a keyword `mut` with a similar name
|
|
|
|
|
|
|
|
|
LL | static mut a: u8 = 0;
|
|
|
|
| ~~~
|
2024-09-01 21:27:43 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|