blob: 1fa684e78e0b029d1be5dfa9a5f99a5942194dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#![warn(clippy::imprecise_flops)]
fn main() {
let x = 3f32;
let y = 4f32;
let _ = x.hypot(y);
//~^ imprecise_flops
let _ = (x + 1f32).hypot(y);
//~^ imprecise_flops
let _ = x.hypot(y);
//~^ imprecise_flops
// Cases where the lint shouldn't be applied
// TODO: linting this adds some complexity, but could be done
let _ = x.mul_add(x, y * y).sqrt();
let _ = (x * 4f32 + y * y).sqrt();
}
|