mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +00:00
14 lines
361 B
Plaintext
14 lines
361 B
Plaintext
// 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() {}
|