summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/absolute_paths/absolute_paths.allow_crates.stderr
blob: 99f08d94727893abbb28443b818b4344d3c8ae8a (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
error: consider bringing this path into scope with the `use` keyword
  --> $DIR/absolute_paths.rs:40:5
   |
LL |     std::f32::MAX;
   |     ^^^^^^^^^^^^^
   |
   = note: `-D clippy::absolute-paths` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::absolute_paths)]`

error: consider bringing this path into scope with the `use` keyword
  --> $DIR/absolute_paths.rs:41:5
   |
LL |     core::f32::MAX;
   |     ^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> $DIR/absolute_paths.rs:42:5
   |
LL |     ::core::f32::MAX;
   |     ^^^^^^^^^^^^^^^^

error: consider bringing this path into scope with the `use` keyword
  --> $DIR/absolute_paths.rs:58:5
   |
LL |     ::std::f32::MAX;
   |     ^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors