2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: `crate` in paths can only be used in start position
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/crate-path-non-absolute.rs:5:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let s = ::m::crate::S;
|
2018-08-14 04:54:43 -05:00
|
|
|
| ^^^^^ `crate` in paths can only be used in start position
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: global paths cannot start with `crate`
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/crate-path-non-absolute.rs:6:20
|
2018-08-14 04:54:43 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let s1 = ::crate::S;
|
2018-08-14 04:54:43 -05:00
|
|
|
| ^^^^^ global paths cannot start with `crate`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|