rust/tests/ui/unused_rounding.fixed
2022-05-24 22:53:29 -04:00

9 lines
123 B
Rust

// run-rustfix
#![warn(clippy::unused_rounding)]
fn main() {
let _ = 1f32;
let _ = 1.0f64;
let _ = 1.00f32;
}