about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/static-mut.stderr
blob: 10cdfe1adc607bbb3196bdadec06a21a01b7687d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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