]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/edition-lint-paths.stderr
Rollup merge of #51099 - Crazycolorz5:expectedcloseparen, r=estebank
[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:22:9
3    |
4 LL |     use ::bar::Bar;
5    |         ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
6    |
7 note: lint level defined here
8   --> $DIR/edition-lint-paths.rs:15:9
9    |
10 LL | #![deny(absolute_paths_not_starting_with_crate)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
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
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:28:9
17    |
18 LL |     use bar;
19    |         ^^^ help: use `crate`: `crate::bar`
20    |
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
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:33:9
26    |
27 LL |     use {Bar as SomethingElse, main};
28    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `crate`: `crate::{Bar as SomethingElse, main}`
29    |
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
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:45:5
35    |
36 LL | use bar::Bar;
37    |     ^^^^^^^^ help: use `crate`: `crate::bar::Bar`
38    |
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
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:57:9
44    |
45 LL |     use *;
46    |         ^ help: use `crate`: `crate::*`
47    |
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
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:62:6
53    |
54 LL | impl ::foo::SomeTrait for u32 { }
55    |      ^^^^^^^^^^^^^^^^ help: use `crate`: `crate::foo::SomeTrait`
56    |
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
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:67:13
62    |
63 LL |     let x = ::bar::Bar;
64    |             ^^^^^^^^^^ help: use `crate`: `crate::bar::Bar`
65    |
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
68
69 error: aborting due to 7 previous errors
70