38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
26 lines
551 B
Plaintext
26 lines
551 B
Plaintext
// run-rustfix
|
|
|
|
#[warn(clippy::cast_lossless)]
|
|
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
|
|
fn main() {
|
|
// Test clippy::cast_lossless with casts to integer types
|
|
i16::from(1i8);
|
|
i32::from(1i8);
|
|
i64::from(1i8);
|
|
i16::from(1u8);
|
|
i32::from(1u8);
|
|
i64::from(1u8);
|
|
u16::from(1u8);
|
|
u32::from(1u8);
|
|
u64::from(1u8);
|
|
i32::from(1i16);
|
|
i64::from(1i16);
|
|
i32::from(1u16);
|
|
i64::from(1u16);
|
|
u32::from(1u16);
|
|
u64::from(1u16);
|
|
i64::from(1i32);
|
|
i64::from(1u32);
|
|
u64::from(1u32);
|
|
}
|