2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-06-03 03:13:29 +02:00
|
|
|
#![feature(test)]
|
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
use test::black_box as b;
|
2018-05-29 11:39:26 +02:00
|
|
|
|
|
|
|
const BE_U32: u32 = 55u32.to_be();
|
|
|
|
const LE_U32: u32 = 55u32.to_le();
|
2018-06-03 11:18:24 +02:00
|
|
|
|
2018-05-29 11:39:26 +02:00
|
|
|
fn main() {
|
2018-06-03 03:13:29 +02:00
|
|
|
assert_eq!(BE_U32, b(55u32).to_be());
|
|
|
|
assert_eq!(LE_U32, b(55u32).to_le());
|
2018-06-03 11:18:24 +02:00
|
|
|
|
2018-11-08 17:18:21 +01:00
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
2018-06-03 11:18:24 +02:00
|
|
|
{
|
|
|
|
const BE_U128: u128 = 999999u128.to_be();
|
2018-07-30 13:08:56 -07:00
|
|
|
const LE_I128: i128 = (-999999i128).to_le();
|
2018-06-03 11:18:24 +02:00
|
|
|
assert_eq!(BE_U128, b(999999u128).to_be());
|
|
|
|
assert_eq!(LE_I128, b(-999999i128).to_le());
|
|
|
|
}
|
2018-05-29 11:39:26 +02:00
|
|
|
}
|