summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_rounding.fixed
blob: 54f85806ac3b3e5c402e18a573896fc14aa2acc2 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
#![warn(clippy::unused_rounding)]

fn main() {
    let _ = 1f32;
    let _ = 1.0f64;
    let _ = 1.00f32;
    let _ = 2e-54f64.floor();
}