mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-12 18:07:40 +00:00
12 lines
222 B
Rust
12 lines
222 B
Rust
![]() |
//@ run-rustfix
|
||
|
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
#[repr(align(8))] //~ ERROR incorrect `repr(align)` attribute format
|
||
|
struct A(u64);
|
||
|
|
||
|
#[repr(align(8))] //~ ERROR incorrect `repr(align)` attribute format
|
||
|
struct B(u64);
|
||
|
|
||
|
fn main() {}
|