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!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
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!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
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!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---- in this macro invocation
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0432, E0433.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0432`.
|