summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/while_float.rs
blob: a3b0618948e6bbc40f4bb6ea3cc30ddf7cb3f960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[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;
    }
}