@@ -10,7 +10,7 @@ note: lint level defined here
10
10
LL | #![deny(absolute_paths_not_starting_with_crate)]
11
11
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
12
= 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>
14
14
15
15
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
16
16
--> $DIR/edition-lint-paths.rs:28:9
@@ -19,7 +19,7 @@ LL | use bar;
19
19
| ^^^ help: use `crate`: `crate::bar`
20
20
|
21
21
= 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>
23
23
24
24
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
25
25
--> $DIR/edition-lint-paths.rs:33:9
@@ -28,7 +28,7 @@ LL | use {Bar as SomethingElse, main};
28
28
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{Bar as SomethingElse, main}`
29
29
|
30
30
= 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>
32
32
33
33
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
34
34
--> $DIR/edition-lint-paths.rs:45:5
@@ -37,7 +37,7 @@ LL | use bar::Bar;
37
37
| ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
38
38
|
39
39
= 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>
41
41
42
42
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
43
43
--> $DIR/edition-lint-paths.rs:57:9
@@ -46,7 +46,7 @@ LL | use *;
46
46
| ^ help: use `crate`: `crate::*`
47
47
|
48
48
= 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>
50
50
51
51
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
52
52
--> $DIR/edition-lint-paths.rs:62:6
@@ -55,7 +55,7 @@ LL | impl ::foo::SomeTrait for u32 { }
55
55
| ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
56
56
|
57
57
= 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>
59
59
60
60
error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
61
61
--> $DIR/edition-lint-paths.rs:67:13
@@ -64,7 +64,7 @@ LL | let x = ::bar::Bar;
64
64
| ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
65
65
|
66
66
= 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>
68
68
69
69
error: aborting due to 7 previous errors
70
70
0 commit comments