rust/tests/ui/parser/use-as-where-use-ends-with-mod-sep.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
440 B
Plaintext
Raw Normal View History

2018-10-20 20:36:17 +00:00
error: expected identifier, found keyword `as`
2019-05-31 20:50:04 +00:00
--> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:16
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | use std::any:: as foo;
2018-10-20 20:36:17 +00:00
| ^^ expected identifier, found keyword
error: expected one of `::`, `;`, or `as`, found `foo`
2019-05-31 20:50:04 +00:00
--> $DIR/use-as-where-use-ends-with-mod-sep.rs:1:19
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | use std::any:: as foo;
| ^^^ expected one of `::`, `;`, or `as`
2018-10-20 20:36:17 +00:00
error: aborting due to 2 previous errors