Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
parser
/
misspelled-keywords
/
use.stderr
blob: 40584c835b7aae1822649c3becb9435816eef791 [
file
] [
log
] [
blame
]
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