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

error: aborting due to 1 previous error