2018-12-09 16:26:16 -06:00
|
|
|
#[warn(
|
|
|
|
clippy::cast_precision_loss,
|
|
|
|
clippy::cast_possible_truncation,
|
|
|
|
clippy::cast_sign_loss,
|
|
|
|
clippy::cast_possible_wrap,
|
|
|
|
clippy::cast_lossless
|
|
|
|
)]
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
|
2015-08-19 17:04:01 -05:00
|
|
|
fn main() {
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_precision_loss
|
2017-02-08 07:58:07 -06:00
|
|
|
1i32 as f32;
|
|
|
|
1i64 as f32;
|
|
|
|
1i64 as f64;
|
|
|
|
1u32 as f32;
|
|
|
|
1u64 as f32;
|
|
|
|
1u64 as f64;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_possible_truncation
|
2017-02-08 07:58:07 -06:00
|
|
|
1f32 as i32;
|
|
|
|
1f32 as u32;
|
|
|
|
1f64 as f32;
|
|
|
|
1i32 as i8;
|
|
|
|
1i32 as u8;
|
|
|
|
1f64 as isize;
|
|
|
|
1f64 as usize;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_possible_wrap
|
2017-02-08 07:58:07 -06:00
|
|
|
1u8 as i8;
|
|
|
|
1u16 as i16;
|
|
|
|
1u32 as i32;
|
|
|
|
1u64 as i64;
|
|
|
|
1usize as isize;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_lossless with casts from floating-point types
|
2017-08-13 16:58:17 -05:00
|
|
|
1.0f32 as f64;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_lossless with an expression wrapped in parens
|
2017-08-30 18:06:21 -05:00
|
|
|
(1u8 + 1u8) as u16;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_sign_loss
|
2017-02-08 07:58:07 -06:00
|
|
|
1i32 as u32;
|
|
|
|
1isize as usize;
|
2015-08-22 14:36:54 -05:00
|
|
|
// Extra checks for *size
|
2017-02-15 08:20:20 -06:00
|
|
|
// Test cast_unnecessary
|
|
|
|
1i32 as i32;
|
|
|
|
1f32 as f32;
|
|
|
|
false as bool;
|
|
|
|
&1i32 as &i32;
|
2017-02-16 08:55:41 -06:00
|
|
|
// Should not trigger
|
2018-12-10 17:59:59 -06:00
|
|
|
#[rustfmt::skip]
|
|
|
|
let v = vec!(1);
|
2017-02-16 08:55:41 -06:00
|
|
|
&v as &[i32];
|
|
|
|
1.0 as f64;
|
|
|
|
1 as u64;
|
2015-09-28 00:11:03 -05:00
|
|
|
}
|