rust/tests/ui/rfcs/rfc-2126-crate-paths/crate-path-non-absolute.stderr

16 lines
588 B
Plaintext
Raw Normal View History

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