about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/float_arithmetic.rs
blob: 3c447bc94c666db222433976ee7d93337982de99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#![warn(clippy::arithmetic_side_effects, clippy::float_arithmetic)]
#![allow(
    unused,
    clippy::shadow_reuse,
    clippy::shadow_unrelated,
    clippy::no_effect,
    clippy::unnecessary_operation,
    clippy::op_ref
)]

#[rustfmt::skip]
fn main() {
    let mut f = 1.0f32;

    f * 2.0;
    //~^ float_arithmetic



    1.0 + f;
    //~^ float_arithmetic

    f * 2.0;
    //~^ float_arithmetic

    f / 2.0;
    //~^ float_arithmetic

    f - 2.0 * 4.2;
    //~^ float_arithmetic

    -f;
    //~^ float_arithmetic


    f += 1.0;
    //~^ float_arithmetic

    f -= 1.0;
    //~^ float_arithmetic

    f *= 2.0;
    //~^ float_arithmetic

    f /= 2.0;
    //~^ float_arithmetic

}

// also warn about floating point arith with references involved

pub fn float_arith_ref() {
    3.1_f32 + &1.2_f32;
    //~^ float_arithmetic

    &3.4_f32 + 1.5_f32;
    //~^ float_arithmetic

    &3.5_f32 + &1.3_f32;
    //~^ float_arithmetic
}

pub fn float_foo(f: &f32) -> f32 {
    let a = 5.1;
    a + f
    //~^ float_arithmetic
}

pub fn float_bar(f1: &f32, f2: &f32) -> f32 {
    f1 + f2
    //~^ float_arithmetic
}

pub fn float_baz(f1: f32, f2: &f32) -> f32 {
    f1 + f2
    //~^ float_arithmetic
}

pub fn float_qux(f1: f32, f2: f32) -> f32 {
    (&f1 + &f2)
    //~^ float_arithmetic
}