about summary refs log tree commit diff
path: root/tests/ui/issues/issue-31769.rs
blob: 354c1be9ed55476fa47a56a828793e576f670c29 (plain)
1
2
3
4
fn main() {
    #[inline] struct Foo;  //~ ERROR attribute cannot be used on
    #[repr(C)] fn foo() {} //~ ERROR attribute should be applied to a struct, enum, or union
}