]> git.proxmox.com Git - rustc.git/blame - src/test/ui/rust-2018/edition-lint-paths.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / rust-2018 / edition-lint-paths.stderr
CommitLineData
94b46f34 1error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
0731742a 2 --> $DIR/edition-lint-paths.rs:12:9
94b46f34 3 |
136023e0
XL
4LL | use bar::Bar;
5 | ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
94b46f34 6 |
74b04a01 7note: the lint level is defined here
0731742a 8 --> $DIR/edition-lint-paths.rs:5:9
94b46f34
XL
9 |
10LL | #![deny(absolute_paths_not_starting_with_crate)]
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
136023e0 12 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 13 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34
XL
14
15error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 16 --> $DIR/edition-lint-paths.rs:19:9
94b46f34
XL
17 |
18LL | use bar;
19 | ^^^ help: use `crate`: `crate::bar`
20 |
136023e0 21 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 22 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34
XL
23
24error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 25 --> $DIR/edition-lint-paths.rs:25:9
94b46f34 26 |
136023e0
XL
27LL | use {main, Bar as SomethingElse};
28 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{main, Bar as SomethingElse}`
94b46f34 29 |
136023e0 30 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 31 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34
XL
32
33error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 34 --> $DIR/edition-lint-paths.rs:25:9
5099ac24
FG
35 |
36LL | 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
42error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 43 --> $DIR/edition-lint-paths.rs:25:9
5099ac24
FG
44 |
45LL | 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
51error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 52 --> $DIR/edition-lint-paths.rs:40:5
5099ac24
FG
53 |
54LL | 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
60error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 61 --> $DIR/edition-lint-paths.rs:52:9
94b46f34
XL
62 |
63LL | use *;
64 | ^ help: use `crate`: `crate::*`
65 |
136023e0 66 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 67 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34
XL
68
69error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 70 --> $DIR/edition-lint-paths.rs:57:6
94b46f34 71 |
136023e0 72LL | impl ::foo::SomeTrait for u32 {}
94b46f34
XL
73 | ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
74 |
136023e0 75 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 76 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34
XL
77
78error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 79 --> $DIR/edition-lint-paths.rs:62:13
94b46f34
XL
80 |
81LL | let x = ::bar::Bar;
82 | ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
83 |
136023e0 84 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 85 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34 86
ee023bcb 87error: aborting due to 9 previous errors
94b46f34 88