about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui-toml/absolute_paths/absolute_paths.default.stderr
blob: 53aa9030e0dd5371ab9801d629962da5f93394d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:14:13
   |
LL |     let _ = std::path::is_separator(' ');
   |             ^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:7:9
   |
LL | #![deny(clippy::absolute_paths)]
   |         ^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:20:13
   |
LL |     let _ = ::std::path::MAIN_SEPARATOR;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:25:13
   |
LL |     let _ = std::collections::hash_map::HashMap::<i32, i32>::new();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:28:31
   |
LL |     let _: &std::path::Path = std::path::Path::new("");
   |                               ^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:28:13
   |
LL |     let _: &std::path::Path = std::path::Path::new("");
   |             ^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:37:13
   |
LL |     let _ = ::core::clone::Clone::clone(&0i32);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:40:13
   |
LL |     let _ = <i32 as core::clone::Clone>::clone(&0i32);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:43:13
   |
LL |     let _ = std::option::Option::None::<i32>;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:65:17
   |
LL |         impl<T: core::cmp::Eq> core::fmt::Display for X<T>
   |                 ^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:70:18
   |
LL |         where T: core::clone::Clone
   |                  ^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:65:32
   |
LL |         impl<T: core::cmp::Eq> core::fmt::Display for X<T>
   |                                ^^^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> tests/ui-toml/absolute_paths/absolute_paths.rs:116:5
   |
LL |     crate::m1::S
   |     ^^^^^^^^^^^^

error: aborting due to 12 previous errors