blob: 3aff84a91f71486f75ace37dd9ef7c769c0d455e [file] [log] [blame] [edit]
//@ run-rustfix
#![allow(dead_code)]
#[repr(align=8)] //~ ERROR incorrect `repr(align)` attribute format
//~| ERROR incorrect `repr(align)` attribute format
struct A(u64);
#[repr(align="8")] //~ ERROR incorrect `repr(align)` attribute format
//~| ERROR incorrect `repr(align)` attribute format
struct B(u64);
fn main() {}