rust/tests/ui/floating_point_powi.fixed

13 lines
264 B
Rust
Raw Normal View History

2020-04-03 11:58:52 -05:00
// run-rustfix
#![warn(clippy::suboptimal_flops, clippy::imprecise_flops)]
fn main() {
let one = 1;
let x = 3f32;
let _ = x * x;
let _ = x * x;
// Cases where the lint shouldn't be applied
let _ = x.powi(3);
let _ = x.powi(one + 1);
}