2018-11-13 17:52:26 -06:00
|
|
|
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;
|
2018-09-03 12:27:14 -05:00
|
|
|
| ^^^^^^ `$crate` in paths can only be used in start position
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
|
|
|
LL | m!();
|
|
|
|
| ----- in this macro invocation
|
|
|
|
|
2018-09-03 12:27:14 -05:00
|
|
|
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;
|
2018-09-03 12:27:14 -05:00
|
|
|
| ^^^^^^^^^ no `$crate` in `a`
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
|
|
|
LL | m!();
|
|
|
|
| ----- in this macro invocation
|
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
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`.
|