mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
23c03e4994
`transmute.stderr` file line count exceeded due to the new test cases so moving the new test cases into a separate file.
12 lines
406 B
Rust
12 lines
406 B
Rust
#[warn(clippy::transmute_float_to_int)]
|
|
|
|
fn float_to_int() {
|
|
let _: u32 = unsafe { std::mem::transmute(1f32) };
|
|
let _: i32 = unsafe { std::mem::transmute(1f32) };
|
|
let _: u64 = unsafe { std::mem::transmute(1f64) };
|
|
let _: i64 = unsafe { std::mem::transmute(1f64) };
|
|
let _: u64 = unsafe { std::mem::transmute(1.0) };
|
|
let _: u64 = unsafe { std::mem::transmute(-1.0) };
|
|
}
|
|
|
|
fn main() {}
|