about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/struct.stderr
blob: edbec3b9456b3486a9c6d90a0e29c50f30054de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: expected one of `!` or `::`, found `Foor`
  --> $DIR/struct.rs:1:8
   |
LL | Struct Foor {
   |        ^^^^ expected one of `!` or `::`
   |
help: write keyword `struct` in lowercase (notice the capitalization difference)
   |
LL - Struct Foor {
LL + struct Foor {
   |

error: aborting due to 1 previous error