2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-06-03 01:13:29 +00:00
|
|
|
#![feature(test)]
|
|
|
|
|
|
|
|
extern crate test;
|
2019-06-08 10:30:52 +00:00
|
|
|
use test::black_box as b; // prevent promotion of the argument and const-propagation of the result
|
2018-05-29 09:39:26 +00:00
|
|
|
|
|
|
|
const BE_U32: u32 = 55u32.to_be();
|
|
|
|
const LE_U32: u32 = 55u32.to_le();
|
2018-06-03 09:18:24 +00:00
|
|
|
|
2018-05-29 09:39:26 +00:00
|
|
|
fn main() {
|
2018-06-03 01:13:29 +00:00
|
|
|
assert_eq!(BE_U32, b(55u32).to_be());
|
|
|
|
assert_eq!(LE_U32, b(55u32).to_le());
|
2018-06-03 09:18:24 +00:00
|
|
|
|
2018-11-08 16:18:21 +00:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-06-03 09:18:24 +00:00
|
|
|
{
|
|
|
|
const BE_U128: u128 = 999999u128.to_be();
|
2018-07-30 20:08:56 +00:00
|
|
|
const LE_I128: i128 = (-999999i128).to_le();
|
2018-06-03 09:18:24 +00:00
|
|
|
assert_eq!(BE_U128, b(999999u128).to_be());
|
|
|
|
assert_eq!(LE_I128, b(-999999i128).to_le());
|
|
|
|
}
|
2018-05-29 09:39:26 +00:00
|
|
|
}
|