rust/tests/ui/consts/const-endianess.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
582 B
Rust
Raw Normal View History

// run-pass
2018-06-03 01:13:29 +00:00
#![feature(test)]
extern crate test;
use test::black_box as b; // prevent promotion of the argument and const-propagation of the result
const BE_U32: u32 = 55u32.to_be();
const LE_U32: u32 = 55u32.to_le();
2018-06-03 09:18:24 +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
#[cfg(not(target_os = "emscripten"))]
2018-06-03 09:18:24 +00:00
{
const BE_U128: u128 = 999999u128.to_be();
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());
}
}