2018-05-11 12:02:17 -05:00
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
|
|
|
--> $DIR/edition-lint-paths.rs:22:9
|
2018-04-20 18:30:14 -05:00
|
|
|
|
|
|
|
|
LL | use ::bar::Bar;
|
|
|
|
| ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-05-11 12:02:17 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:15:9
|
2018-04-20 18:30:14 -05:00
|
|
|
|
|
2018-05-18 17:13:53 -05:00
|
|
|
LL | #![deny(absolute_paths_not_starting_with_crate)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-04-20 18:30:14 -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!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
2018-05-11 12:02:17 -05:00
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
|
|
|
--> $DIR/edition-lint-paths.rs:28:9
|
|
|
|
|
|
|
|
|
LL | use bar;
|
|
|
|
| ^^^ help: use `crate`: `crate::bar`
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
2018-05-22 17:34:30 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:33:9
|
2018-05-11 12:02:17 -05:00
|
|
|
|
|
|
|
|
LL | use {Bar as SomethingElse, main};
|
2018-05-22 17:34:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{Bar as SomethingElse, main}`
|
2018-05-11 12:02:17 -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!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
2018-05-22 17:34:30 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:45:5
|
2018-04-20 18:30:14 -05:00
|
|
|
|
|
|
|
|
LL | use bar::Bar;
|
|
|
|
| ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
2018-05-11 12:02:17 -05:00
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
2018-05-22 17:34:30 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:57:9
|
2018-05-11 12:02:17 -05:00
|
|
|
|
|
|
|
|
LL | use *;
|
|
|
|
| ^ help: use `crate`: `crate::*`
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
2018-05-22 17:34:30 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:62:6
|
2018-05-22 10:45:44 -05:00
|
|
|
|
|
|
|
|
LL | impl ::foo::SomeTrait for u32 { }
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
|
|
|
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
|
2018-05-22 17:34:30 -05:00
|
|
|
--> $DIR/edition-lint-paths.rs:67:13
|
2018-04-20 18:30:14 -05:00
|
|
|
|
|
|
|
|
LL | let x = ::bar::Bar;
|
|
|
|
| ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
|
|
|
|
= note: for more information, see issue TBD
|
|
|
|
|
2018-05-22 17:34:30 -05:00
|
|
|
error: aborting due to 7 previous errors
|
2018-04-20 18:30:14 -05:00
|
|
|
|