mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
14 lines
222 B
Rust
14 lines
222 B
Rust
#[deny(clippy::while_float)]
|
|
fn main() {
|
|
let mut x = 0.0_f32;
|
|
while x < 42.0_f32 {
|
|
x += 0.5;
|
|
}
|
|
while x < 42.0 {
|
|
x += 1.0;
|
|
}
|
|
let mut x = 0;
|
|
while x < 42 {
|
|
x += 1;
|
|
}
|
|
}
|