2018-05-23 15:20:40 -05:00
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
|
|
|
--> $DIR/extern-crate-rename.rs:22:5
|
|
|
|
|
|
|
|
|
LL | use my_crate::foo;
|
|
|
|
| ^^^^^^^^^^^^^ help: use `crate`: `crate::my_crate::foo`
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/extern-crate-rename.rs:18:9
|
|
|
|
|
|
2018-05-18 17:13:53 -05:00
|
|
|
LL | #![deny(absolute_paths_not_starting_with_crate)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-05-23 15:20:40 -05:00
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
2018-10-20 13:17:42 -05:00
|
|
|
= note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
|
2018-05-23 15:20:40 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|