]> git.proxmox.com Git - rustc.git/blame - src/test/ui/rust-2018/edition-lint-nested-paths.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / rust-2018 / edition-lint-nested-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-nested-paths.rs:6:5
94b46f34
XL
3 |
4LL | use foo::{a, b};
5 | ^^^^^^^^^^^ help: use `crate`: `crate::foo::{a, b}`
6 |
74b04a01 7note: the lint level is defined here
0731742a 8 --> $DIR/edition-lint-nested-paths.rs:4: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
5099ac24
FG
16 --> $DIR/edition-lint-nested-paths.rs:6:5
17 |
18LL | use foo::{a, b};
19 | ^^^^^^^^^^^ help: use `crate`: `crate::foo::{a, b}`
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
24error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 25 --> $DIR/edition-lint-nested-paths.rs:23:13
5099ac24
FG
26 |
27LL | use foo::{self as x, c};
28 | ^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::{self as x, c}`
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
33error: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition
ee023bcb 34 --> $DIR/edition-lint-nested-paths.rs:23:13
94b46f34
XL
35 |
36LL | use foo::{self as x, c};
37 | ^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::{self as x, c}`
38 |
136023e0 39 = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
4462d4a0 40 = note: for more information, see issue #53130 <https://github.com/rust-lang/rust/issues/53130>
94b46f34 41
ee023bcb 42error: aborting due to 4 previous errors
94b46f34 43