Pass literal through black_box

This commit is contained in:
Linus Färnstrand 2018-06-03 03:13:29 +02:00
parent 490c57b156
commit 7df009922b

View File

@ -9,6 +9,10 @@
// except according to those terms.
#![feature(const_int_ops)]
#![feature(test)]
extern crate test;
use test::black_box as b;
const BE_U32: u32 = 55u32.to_be();
const LE_U32: u32 = 55u32.to_le();
@ -16,8 +20,8 @@ const BE_U128: u128 = 999999u128.to_be();
const LE_I128: i128 = -999999i128.to_le();
fn main() {
assert_eq!(BE_U32, 55u32.to_be());
assert_eq!(LE_U32, 55u32.to_le());
assert_eq!(BE_U128, 999999u128.to_be());
assert_eq!(LE_I128, -999999i128.to_le());
assert_eq!(BE_U32, b(55u32).to_be());
assert_eq!(LE_U32, b(55u32).to_le());
assert_eq!(BE_U128, b(999999u128).to_be());
assert_eq!(LE_I128, b(-999999i128).to_le());
}