mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
362 B
Rust
13 lines
362 B
Rust
//@ 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() {}
|