]> git.proxmox.com Git - rustc.git/blobdiff - library/core/tests/num/int_macros.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / library / core / tests / num / int_macros.rs
index fcb0d6031be62f2b9816107307d95e8ed8c94bd1..90c476567844eae873e13efd4dacd8d4091c4bf1 100644 (file)
@@ -131,9 +131,9 @@ macro_rules! int_module {
                 assert_eq!(B.rotate_left(0), B);
                 assert_eq!(C.rotate_left(0), C);
                 // Rotating by a multiple of word size should also have no effect
-                assert_eq!(A.rotate_left(64), A);
-                assert_eq!(B.rotate_left(64), B);
-                assert_eq!(C.rotate_left(64), C);
+                assert_eq!(A.rotate_left(128), A);
+                assert_eq!(B.rotate_left(128), B);
+                assert_eq!(C.rotate_left(128), C);
             }
 
             #[test]