2023-07-31 21:53:53 +00:00
|
|
|
error: consider bringing this path into scope with the `use` keyword
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/absolute_paths/absolute_paths.rs:40:5
|
2023-07-31 21:53:53 +00:00
|
|
|
|
|
|
|
|
LL | std::f32::MAX;
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::absolute-paths` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::absolute_paths)]`
|
2023-07-31 21:53:53 +00:00
|
|
|
|
|
|
|
error: consider bringing this path into scope with the `use` keyword
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/absolute_paths/absolute_paths.rs:41:5
|
2023-07-31 21:53:53 +00:00
|
|
|
|
|
|
|
|
LL | core::f32::MAX;
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider bringing this path into scope with the `use` keyword
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/absolute_paths/absolute_paths.rs:42:5
|
2023-07-31 21:53:53 +00:00
|
|
|
|
|
|
|
|
LL | ::core::f32::MAX;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider bringing this path into scope with the `use` keyword
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/absolute_paths/absolute_paths.rs:58:5
|
2023-07-31 21:53:53 +00:00
|
|
|
|
|
|
|
|
LL | ::std::f32::MAX;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|