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

error: aborting due to 1 previous error