2023-05-14 11:37:12 +00:00
|
|
|
#![warn(clippy::arithmetic_side_effects, clippy::float_arithmetic)]
|
2020-03-18 14:41:42 +00:00
|
|
|
#![allow(
|
|
|
|
unused,
|
|
|
|
clippy::shadow_reuse,
|
|
|
|
clippy::shadow_unrelated,
|
|
|
|
clippy::no_effect,
|
|
|
|
clippy::unnecessary_operation,
|
2020-04-03 01:46:01 +00:00
|
|
|
clippy::op_ref
|
2020-03-18 14:41:42 +00:00
|
|
|
)]
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn main() {
|
|
|
|
let mut f = 1.0f32;
|
|
|
|
|
|
|
|
f * 2.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
|
|
|
//~| NOTE: `-D clippy::float-arithmetic` implied by `-D warnings`
|
2020-03-18 14:41:42 +00:00
|
|
|
|
|
|
|
1.0 + f;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f * 2.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f / 2.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f - 2.0 * 4.2;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
-f;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
|
|
|
|
f += 1.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f -= 1.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f *= 2.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
f /= 2.0;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// also warn about floating point arith with references involved
|
|
|
|
|
|
|
|
pub fn float_arith_ref() {
|
|
|
|
3.1_f32 + &1.2_f32;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
&3.4_f32 + 1.5_f32;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
&3.5_f32 + &1.3_f32;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn float_foo(f: &f32) -> f32 {
|
|
|
|
let a = 5.1;
|
|
|
|
a + f
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn float_bar(f1: &f32, f2: &f32) -> f32 {
|
|
|
|
f1 + f2
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn float_baz(f1: f32, f2: &f32) -> f32 {
|
|
|
|
f1 + f2
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn float_qux(f1: f32, f2: f32) -> f32 {
|
|
|
|
(&f1 + &f2)
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: floating-point arithmetic detected
|
2020-03-18 14:41:42 +00:00
|
|
|
}
|