rust-clippy/tests/ui/unused_rounding.rs
2022-05-24 22:53:35 -04:00

9 lines
176 B
Rust

// run-rustfix
#![warn(clippy::unused_rounding)]
fn main() {
let _ = 1f32.ceil();
let _ = 1.0f64.floor();
let _ = 1.00f32.round();
let _ = 2e-54f64.floor();
}