@@ -10,7 +10,7 @@ note: lint level defined here
1010LL | #![deny(absolute_paths_not_starting_with_crate)]
1111 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1212 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
13- = note: for more information, see issue TBD
13+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
1414
1515error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
1616 --> $DIR/edition-lint-paths.rs:28:9
@@ -19,7 +19,7 @@ LL | use bar;
1919 | ^^^ help: use `crate`: `crate::bar`
2020 |
2121 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
22- = note: for more information, see issue TBD
22+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
2323
2424error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
2525 --> $DIR/edition-lint-paths.rs:33:9
@@ -28,7 +28,7 @@ LL | use {Bar as SomethingElse, main};
2828 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{Bar as SomethingElse, main}`
2929 |
3030 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
31- = note: for more information, see issue TBD
31+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
3232
3333error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
3434 --> $DIR/edition-lint-paths.rs:45:5
@@ -37,7 +37,7 @@ LL | use bar::Bar;
3737 | ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
3838 |
3939 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
40- = note: for more information, see issue TBD
40+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
4141
4242error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
4343 --> $DIR/edition-lint-paths.rs:57:9
@@ -46,7 +46,7 @@ LL | use *;
4646 | ^ help: use `crate`: `crate::*`
4747 |
4848 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
49- = note: for more information, see issue TBD
49+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
5050
5151error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
5252 --> $DIR/edition-lint-paths.rs:62:6
@@ -55,7 +55,7 @@ LL | impl ::foo::SomeTrait for u32 { }
5555 | ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
5656 |
5757 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
58- = note: for more information, see issue TBD
58+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
5959
6060error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
6161 --> $DIR/edition-lint-paths.rs:67:13
@@ -64,7 +64,7 @@ LL | let x = ::bar::Bar;
6464 | ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
6565 |
6666 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
67- = note: for more information, see issue TBD
67+ = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
6868
6969error: aborting due to 7 previous errors
7070
0 commit comments