2024-05-21 10:39:30 -07:00
|
|
|
error: while condition comparing floats
|
|
|
|
|
--> tests/ui/while_float.rs:4:11
|
|
|
|
|
|
|
|
|
|
|
LL | while x < 42.0_f32 {
|
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
|
--> tests/ui/while_float.rs:1:8
|
|
|
|
|
|
|
|
|
|
|
LL | #[deny(clippy::while_float)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: while condition comparing floats
|
2025-02-28 23:20:48 +01:00
|
|
|
--> tests/ui/while_float.rs:8:11
|
2024-05-21 10:39:30 -07:00
|
|
|
|
|
|
|
|
|
LL | while x < 42.0 {
|
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|