rust/src/test/ui/dollar-crate/dollar-crate-is-keyword-2.stderr

32 lines
969 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: `$crate` in paths can only be used in start position
2018-12-25 09:56:47 -06:00
--> $DIR/dollar-crate-is-keyword-2.rs:6:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use a::$crate::b;
| ^^^^^^ `$crate` in paths can only be used in start position
2018-08-08 07:28:26 -05:00
...
LL | m!();
| ----- in this macro invocation
error[E0432]: unresolved import `a::$crate`
2018-12-25 09:56:47 -06:00
--> $DIR/dollar-crate-is-keyword-2.rs:5:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use a::$crate;
| ^^^^^^^^^ no `$crate` in `a`
2018-08-08 07:28:26 -05:00
...
LL | m!();
| ----- in this macro invocation
error[E0433]: failed to resolve: `$crate` in paths can only be used in start position
2018-12-25 09:56:47 -06:00
--> $DIR/dollar-crate-is-keyword-2.rs:7:21
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | type A = a::$crate;
2018-08-08 07:28:26 -05:00
| ^^^^^^ `$crate` in paths can only be used in start position
...
LL | m!();
| ----- in this macro invocation
error: aborting due to 3 previous errors
Some errors occurred: E0432, E0433.
For more information about an error, try `rustc --explain E0432`.