rust/tests/run-pass/intptrcast.rs

15 lines
435 B
Rust
Raw Normal View History

2019-06-22 09:25:16 -05:00
// compile-flags: -Zmiri-seed=0000000000000000
fn main() {
2019-06-28 13:42:00 -05:00
// Some casting-to-int with arithmetic.
2019-06-22 09:25:16 -05:00
let x = &42 as *const i32 as usize;
let y = x * 2;
2019-06-24 21:47:37 -05:00
assert_eq!(y, x + x);
2019-06-22 09:25:16 -05:00
let z = y as u8 as usize;
assert_eq!(z, y % 256);
2019-06-28 13:42:00 -05:00
// Pointer string formatting! We can't check the output as it changes when libstd changes,
// but we can make sure Miri does not error.
format!("{:?}", &mut 13 as *mut _);
2019-06-22 09:25:16 -05:00
}