]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/edition-lint-paths.stderr
Rollup merge of #101388 - compiler-errors:issue-101376, r=fee1-dead
[rust.git] / src / test / ui / rust-2018 / edition-lint-paths.stderr
1 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
2   --> $DIR/edition-lint-paths.rs:12:9
3    |
4 LL |     use bar::Bar;
5    |         ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
6    |
7 note: the lint level is defined here
8   --> $DIR/edition-lint-paths.rs:5:9
9    |
10 LL | #![deny(absolute_paths_not_starting_with_crate)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
13    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
14
15 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
16   --> $DIR/edition-lint-paths.rs:19:9
17    |
18 LL |     use bar;
19    |         ^^^ help: use `crate`: `crate::bar`
20    |
21    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
22    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
23
24 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
25   --> $DIR/edition-lint-paths.rs:25:9
26    |
27 LL |     use {main, Bar as SomethingElse};
28    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{main, Bar as SomethingElse}`
29    |
30    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
31    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
32
33 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
34   --> $DIR/edition-lint-paths.rs:25:9
35    |
36 LL |     use {main, Bar as SomethingElse};
37    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{main, Bar as SomethingElse}`
38    |
39    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
40    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
41
42 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
43   --> $DIR/edition-lint-paths.rs:25:9
44    |
45 LL |     use {main, Bar as SomethingElse};
46    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{main, Bar as SomethingElse}`
47    |
48    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
49    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
50
51 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
52   --> $DIR/edition-lint-paths.rs:40:5
53    |
54 LL | use bar::Bar;
55    |     ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
56    |
57    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
58    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
59
60 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
61   --> $DIR/edition-lint-paths.rs:52:9
62    |
63 LL |     use *;
64    |         ^ help: use `crate`: `crate::*`
65    |
66    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
67    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
68
69 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
70   --> $DIR/edition-lint-paths.rs:57:6
71    |
72 LL | impl ::foo::SomeTrait for u32 {}
73    |      ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
74    |
75    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
76    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
77
78 error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
79   --> $DIR/edition-lint-paths.rs:62:13
80    |
81 LL |     let x = ::bar::Bar;
82    |             ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
83    |
84    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
85    = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
86
87 error: aborting due to 9 previous errors
88