2020-04-03 18:58:52 +02:00
|
|
|
// run-rustfix
|
2020-06-22 19:16:27 +02:00
|
|
|
#![warn(clippy::suboptimal_flops)]
|
2020-04-03 18:58:52 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let one = 1;
|
|
|
|
let x = 3f32;
|
|
|
|
let _ = x.powi(2);
|
|
|
|
let _ = x.powi(1 + 1);
|
2020-05-25 18:54:39 +02:00
|
|
|
|
|
|
|
let y = 4f32;
|
2020-06-22 19:16:27 +02:00
|
|
|
let _ = x.powi(2) + y;
|
|
|
|
let _ = x + y.powi(2);
|
2020-05-25 18:54:39 +02:00
|
|
|
let _ = (x.powi(2) + y).sqrt();
|
|
|
|
let _ = (x + y.powi(2)).sqrt();
|
2020-04-03 18:58:52 +02:00
|
|
|
// Cases where the lint shouldn't be applied
|
|
|
|
let _ = x.powi(3);
|
|
|
|
let _ = x.powi(one + 1);
|
2020-05-25 18:54:39 +02:00
|
|
|
let _ = (x.powi(2) + y.powi(2)).sqrt();
|
2020-04-03 18:58:52 +02:00
|
|
|
}
|