about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/impl-block.stderr
blob: 8219ed6bfe94cfadb49c5ebdf9f558207d6214b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: expected one of `!` or `::`, found `Human`
  --> $DIR/impl-block.rs:3:6
   |
LL | ipml Human {}
   |      ^^^^^ expected one of `!` or `::`
   |
help: there is a keyword `impl` with a similar name
   |
LL - ipml Human {}
LL + impl Human {}
   |

error: aborting due to 1 previous error