blob: d6f51ce9c99dc39856919257ceed61f0a8f8429b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// build-pass (FIXME(62277): could be check-pass?)
#![deny(unused_attributes)]
#[repr(C)]
#[repr(packed)]
pub struct Foo;
#[repr(packed)]
#[repr(C)]
pub struct Bar;
fn main() { }
|