mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
440 B
Plaintext
15 lines
440 B
Plaintext
error: expected identifier, found keyword `as`
|
|
--> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:16
|
|
|
|
|
LL | use std::any:: as foo;
|
|
| ^^ expected identifier, found keyword
|
|
|
|
error: expected one of `::`, `;`, or `as`, found `foo`
|
|
--> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:19
|
|
|
|
|
LL | use std::any:: as foo;
|
|
| ^^^ expected one of `::`, `;`, or `as`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|