mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-19 01:24:05 +00:00
28 lines
747 B
Text
28 lines
747 B
Text
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`
|
|
|
|
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
|
|
|