rust/tests/ui/structs-enums/enum-alignment.rs

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

25 lines
424 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
#![allow(deprecated)]
use std::mem;
fn addr_of<T>(ptr: &T) -> usize {
ptr as *const T as usize
}
fn is_aligned<T>(ptr: &T) -> bool {
2013-04-26 21:04:39 +00:00
unsafe {
let addr: usize = mem::transmute(ptr);
(addr % mem::min_align_of::<T>()) == 0
2013-04-26 21:04:39 +00:00
}
}
pub fn main() {
let x = Some(0u64);
match x {
None => panic!(),
2013-03-29 01:39:09 +00:00
Some(ref y) => assert!(is_aligned(y))
}
}