]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/const-int-conversion-rpass.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / consts / const-int-conversion-rpass.rs
index d52dbbae1e7b5359e9ae8895131e45fcaac43a39..6484169dd9ae12e4e6ef7013741105c595770d53 100644 (file)
@@ -1,7 +1,5 @@
 // run-pass
 
-#![feature(const_int_conversion)]
-
 const REVERSE: u32 = 0x12345678_u32.reverse_bits();
 const FROM_BE_BYTES: i32 = i32::from_be_bytes([0x12, 0x34, 0x56, 0x78]);
 const FROM_LE_BYTES: i32 = i32::from_le_bytes([0x12, 0x34, 0x56, 0x78]);