about summary refs log tree commit diff
path: root/tests/ui/packed/packed-struct-borrow-element-64bit.rs
blob: 81eac07eaa89428fa7da1876b884175147d7b74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ ignore-32bit (needs `usize` to be 8-aligned to reproduce all the errors below)
#![allow(dead_code)]
//@ ignore-emscripten weird assertion?

#[repr(C, packed(4))]
struct Foo4C {
    bar: u8,
    baz: usize
}

pub fn main() {
    let foo = Foo4C { bar: 1, baz: 2 };
    let brw = &foo.baz; //~ERROR reference to packed field is unaligned
    assert_eq!(*brw, 2);
}