]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/use-as-where-use-ends-with-mod-sep.stderr
Merge commit '27afd6ade4bb1123a8bf82001629b69d23d62aff' into clippyup
[rust.git] / src / test / ui / parser / use-as-where-use-ends-with-mod-sep.stderr
1 error: expected identifier, found keyword `as`
2   --> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:16
3    |
4 LL | use std::any:: as foo;
5    |                ^^ expected identifier, found keyword
6
7 error: expected one of `::`, `;`, or `as`, found `foo`
8   --> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:19
9    |
10 LL | use std::any:: as foo;
11    |                   ^^^ expected one of `::`, `;`, or `as`
12
13 error: aborting due to 2 previous errors
14