]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cast.rs
iterate List by value
[rust.git] / tests / ui / cast.rs
index d0ea5f40789d934167a6131c8eddd7445910e1ec..7e0b211d862ca907a5fe1b3c9e3dd9bd07015b0c 100644 (file)
@@ -1,64 +1,95 @@
-#![feature(plugin)]
-#![plugin(clippy)]
-
-#[deny(cast_precision_loss, cast_possible_truncation, cast_sign_loss, cast_possible_wrap)]
-#[allow(no_effect, unnecessary_operation)]
+#[warn(
+    clippy::cast_precision_loss,
+    clippy::cast_possible_truncation,
+    clippy::cast_sign_loss,
+    clippy::cast_possible_wrap
+)]
+#[allow(clippy::no_effect, clippy::unnecessary_operation)]
 fn main() {
-    // Test cast_precision_loss
-    1i32 as f32; //~ERROR casting i32 to f32 causes a loss of precision (i32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
-    1i64 as f32; //~ERROR casting i64 to f32 causes a loss of precision (i64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
-    1i64 as f64; //~ERROR casting i64 to f64 causes a loss of precision (i64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
-    1u32 as f32; //~ERROR casting u32 to f32 causes a loss of precision (u32 is 32 bits wide, but f32's mantissa is only 23 bits wide)
-    1u64 as f32; //~ERROR casting u64 to f32 causes a loss of precision (u64 is 64 bits wide, but f32's mantissa is only 23 bits wide)
-    1u64 as f64; //~ERROR casting u64 to f64 causes a loss of precision (u64 is 64 bits wide, but f64's mantissa is only 52 bits wide)
-    1i32 as f64; // Should not trigger the lint
-    1u32 as f64; // Should not trigger the lint
+    // Test clippy::cast_precision_loss
+    let x0 = 1i32;
+    x0 as f32;
+    let x1 = 1i64;
+    x1 as f32;
+    x1 as f64;
+    let x2 = 1u32;
+    x2 as f32;
+    let x3 = 1u64;
+    x3 as f32;
+    x3 as f64;
+    // Test clippy::cast_possible_truncation
+    1f32 as i32;
+    1f32 as u32;
+    1f64 as f32;
+    1i32 as i8;
+    1i32 as u8;
+    1f64 as isize;
+    1f64 as usize;
+    // Test clippy::cast_possible_wrap
+    1u8 as i8;
+    1u16 as i16;
+    1u32 as i32;
+    1u64 as i64;
+    1usize as isize;
+    // Test clippy::cast_sign_loss
+    1i32 as u32;
+    -1i32 as u32;
+    1isize as usize;
+    -1isize as usize;
+    0i8 as u8;
+    i8::max_value() as u8;
+    i16::max_value() as u16;
+    i32::max_value() as u32;
+    i64::max_value() as u64;
+    i128::max_value() as u128;
 
-    // Test cast_possible_truncation
-    1f32 as i32;   //~ERROR casting f32 to i32 may truncate the value
-    1f32 as u32;   //~ERROR casting f32 to u32 may truncate the value
-                  //~^ERROR casting f32 to u32 may lose the sign of the value
-    1f64 as f32;   //~ERROR casting f64 to f32 may truncate the value
-    1i32 as i8;    //~ERROR casting i32 to i8 may truncate the value
-    1i32 as u8;    //~ERROR casting i32 to u8 may truncate the value
-                  //~^ERROR casting i32 to u8 may lose the sign of the value
-    1f64 as isize; //~ERROR casting f64 to isize may truncate the value
-    1f64 as usize; //~ERROR casting f64 to usize may truncate the value
-                  //~^ERROR casting f64 to usize may lose the sign of the value
+    (-1i8).abs() as u8;
+    (-1i16).abs() as u16;
+    (-1i32).abs() as u32;
+    (-1i64).abs() as u64;
+    (-1isize).abs() as usize;
 
-    // Test cast_possible_wrap
-    1u8 as i8;       //~ERROR casting u8 to i8 may wrap around the value
-    1u16 as i16;     //~ERROR casting u16 to i16 may wrap around the value
-    1u32 as i32;     //~ERROR casting u32 to i32 may wrap around the value
-    1u64 as i64;     //~ERROR casting u64 to i64 may wrap around the value
-    1usize as isize; //~ERROR casting usize to isize may wrap around the value
+    (-1i8).checked_abs().unwrap() as u8;
+    (-1i16).checked_abs().unwrap() as u16;
+    (-1i32).checked_abs().unwrap() as u32;
+    (-1i64).checked_abs().unwrap() as u64;
+    (-1isize).checked_abs().unwrap() as usize;
 
-    // Test cast_sign_loss
-    1i32 as u32;     //~ERROR casting i32 to u32 may lose the sign of the value
-    1isize as usize; //~ERROR casting isize to usize may lose the sign of the value
+    (-1i8).rem_euclid(1i8) as u8;
+    (-1i8).rem_euclid(1i8) as u16;
+    (-1i16).rem_euclid(1i16) as u16;
+    (-1i16).rem_euclid(1i16) as u32;
+    (-1i32).rem_euclid(1i32) as u32;
+    (-1i32).rem_euclid(1i32) as u64;
+    (-1i64).rem_euclid(1i64) as u64;
+    (-1i64).rem_euclid(1i64) as u128;
+    (-1isize).rem_euclid(1isize) as usize;
+    (1i8).rem_euclid(-1i8) as u8;
+    (1i8).rem_euclid(-1i8) as u16;
+    (1i16).rem_euclid(-1i16) as u16;
+    (1i16).rem_euclid(-1i16) as u32;
+    (1i32).rem_euclid(-1i32) as u32;
+    (1i32).rem_euclid(-1i32) as u64;
+    (1i64).rem_euclid(-1i64) as u64;
+    (1i64).rem_euclid(-1i64) as u128;
+    (1isize).rem_euclid(-1isize) as usize;
 
-    // Extra checks for *size
-    // Casting from *size
-    1isize as i8;  //~ERROR casting isize to i8 may truncate the value
-    1isize as f64; //~ERROR casting isize to f64 causes a loss of precision on targets with 64-bit wide pointers (isize is 64 bits wide, but f64's mantissa is only 52 bits wide)
-    1usize as f64; //~ERROR casting usize to f64 causes a loss of precision on targets with 64-bit wide pointers (usize is 64 bits wide, but f64's mantissa is only 52 bits wide)
-    1isize as f32; //~ERROR casting isize to f32 causes a loss of precision (isize is 32 or 64 bits wide, but f32's mantissa is only 23 bits wide)
-    1usize as f32; //~ERROR casting usize to f32 causes a loss of precision (usize is 32 or 64 bits wide, but f32's mantissa is only 23 bits wide)
-    1isize as i32; //~ERROR casting isize to i32 may truncate the value on targets with 64-bit wide pointers
-    1isize as u32; //~ERROR casting isize to u32 may lose the sign of the value
-                  //~^ERROR casting isize to u32 may truncate the value on targets with 64-bit wide pointers
-    1usize as u32; //~ERROR casting usize to u32 may truncate the value on targets with 64-bit wide pointers
-    1usize as i32; //~ERROR casting usize to i32 may truncate the value on targets with 64-bit wide pointers
-                  //~^ERROR casting usize to i32 may wrap around the value on targets with 32-bit wide pointers
-    // Casting to *size
-    1i64 as isize; //~ERROR casting i64 to isize may truncate the value on targets with 32-bit wide pointers
-    1i64 as usize; //~ERROR casting i64 to usize may truncate the value on targets with 32-bit wide pointers
-                  //~^ERROR casting i64 to usize may lose the sign of the value
-    1u64 as isize; //~ERROR casting u64 to isize may truncate the value on targets with 32-bit wide pointers
-                  //~^ERROR casting u64 to isize may wrap around the value on targets with 64-bit wide pointers
-    1u64 as usize; //~ERROR casting u64 to usize may truncate the value on targets with 32-bit wide pointers
-    1u32 as isize; //~ERROR casting u32 to isize may wrap around the value on targets with 32-bit wide pointers
-    1u32 as usize; // Should not trigger any lint
-    1i32 as isize; // Neither should this
-    1i32 as usize; //~ERROR casting i32 to usize may lose the sign of the value
+    (-1i8).checked_rem_euclid(1i8).unwrap() as u8;
+    (-1i8).checked_rem_euclid(1i8).unwrap() as u16;
+    (-1i16).checked_rem_euclid(1i16).unwrap() as u16;
+    (-1i16).checked_rem_euclid(1i16).unwrap() as u32;
+    (-1i32).checked_rem_euclid(1i32).unwrap() as u32;
+    (-1i32).checked_rem_euclid(1i32).unwrap() as u64;
+    (-1i64).checked_rem_euclid(1i64).unwrap() as u64;
+    (-1i64).checked_rem_euclid(1i64).unwrap() as u128;
+    (-1isize).checked_rem_euclid(1isize).unwrap() as usize;
+    (1i8).checked_rem_euclid(-1i8).unwrap() as u8;
+    (1i8).checked_rem_euclid(-1i8).unwrap() as u16;
+    (1i16).checked_rem_euclid(-1i16).unwrap() as u16;
+    (1i16).checked_rem_euclid(-1i16).unwrap() as u32;
+    (1i32).checked_rem_euclid(-1i32).unwrap() as u32;
+    (1i32).checked_rem_euclid(-1i32).unwrap() as u64;
+    (1i64).checked_rem_euclid(-1i64).unwrap() as u64;
+    (1i64).checked_rem_euclid(-1i64).unwrap() as u128;
+    (1isize).checked_rem_euclid(-1isize).unwrap() as usize;
 }