rust/tests/ui/issues/issue-26646.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
145 B
Rust
Raw Normal View History

// check-pass
2015-06-29 20:27:10 +00:00
#![deny(unused_attributes)]
#[repr(C)]
#[repr(packed)]
pub struct Foo;
#[repr(packed)]
#[repr(C)]
pub struct Bar;
2015-06-29 20:49:15 +00:00
fn main() { }