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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 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;
| ^^^^^ `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`
2022-01-19 09:24:49 -06:00
--> $DIR/crate-path-non-absolute.rs:6:20
|
2019-03-09 06:03:44 -06:00
LL | let s1 = ::crate::S;
| ^^^^^ 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`.