2015-08-19 22:04:01 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2015-08-20 20:44:40 +00:00
|
|
|
#[deny(cast_precision_loss, cast_possible_truncation, cast_sign_loss)]
|
2015-08-19 22:04:01 +00:00
|
|
|
fn main() {
|
|
|
|
let i : i32 = 42;
|
|
|
|
let u : u32 = 42;
|
|
|
|
let f : f32 = 42.0;
|
|
|
|
|
|
|
|
// Test cast_precision_loss
|
2015-08-20 20:44:40 +00:00
|
|
|
i as f32; //~ERROR converting from i32 to f32, which causes a loss of precision (i32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
|
|
|
|
(i as i64) as f32; //~ERROR converting from i64 to f32, which causes a loss of precision (i64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
|
|
|
|
(i as i64) as f64; //~ERROR converting from i64 to f64, which causes a loss of precision (i64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
|
|
|
|
u as f32; //~ERROR converting from u32 to f32, which causes a loss of precision (u32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
|
|
|
|
(u as u64) as f32; //~ERROR converting from u64 to f32, which causes a loss of precision (u64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
|
|
|
|
(u as u64) as f64; //~ERROR converting from u64 to f64, which causes a loss of precision (u64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
|
2015-08-19 22:04:01 +00:00
|
|
|
i as f64; // Should not trigger the lint
|
|
|
|
u as f64; // Should not trigger the lint
|
|
|
|
|
2015-08-20 20:44:40 +00:00
|
|
|
// Test cast_possible_truncation
|
|
|
|
f as i32; //~ERROR casting f32 to i32 may cause truncation of the value
|
|
|
|
f as u32; //~ERROR casting f32 to u32 may cause truncation of the value
|
2015-08-19 22:04:01 +00:00
|
|
|
//~^ERROR casting from f32 to u32 loses the sign of the value
|
2015-08-20 20:44:40 +00:00
|
|
|
i as u8; //~ERROR casting i32 to u8 may cause truncation of the value
|
2015-08-19 22:04:01 +00:00
|
|
|
//~^ERROR casting from i32 to u8 loses the sign of the value
|
2015-08-20 20:44:40 +00:00
|
|
|
(f as f64) as f32; //~ERROR casting f64 to f32 may cause truncation of the value
|
|
|
|
i as i8; //~ERROR casting i32 to i8 may cause truncation of the value
|
2015-08-19 22:04:01 +00:00
|
|
|
|
|
|
|
// Test cast_sign_loss
|
|
|
|
i as u32; //~ERROR casting from i32 to u32 loses the sign of the value
|
|
|
|
}
|