rust/src/test/ui/rfc-2126-crate-paths/crate-path-non-absolute.stderr

16 lines
646 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve. `crate` in paths can only be used in start position
2018-08-08 07:28:26 -05:00
--> $DIR/crate-path-non-absolute.rs:17:22
|
LL | let s = ::m::crate::S; //~ ERROR failed to resolve
| ^^^^^ `crate` in paths can only be used in start position
2018-08-08 07:28:26 -05:00
error[E0433]: failed to resolve. global paths cannot start with `crate`
--> $DIR/crate-path-non-absolute.rs:18:20
|
LL | let s1 = ::crate::S; //~ ERROR failed to resolve
| ^^^^^ 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`.