// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![allow(dead_code)] use std::mem; enum Tag { Tag2(A) } struct Rec { c8: u8, t: Tag } fn mk_rec() -> Rec { return Rec { c8:0, t:Tag::Tag2(0) }; } fn is_u64_aligned(u: &Tag) -> bool { let p: usize = unsafe { mem::transmute(u) }; let u64_align = std::mem::align_of::(); return (p & (u64_align - 1)) == 0; //~ ERROR a raw memory access tried to access part of a pointer value as raw bytes } pub fn main() { let x = mk_rec(); assert!(is_u64_aligned(&x.t)); }