blob: 4010ba7724cf330559adcae46daa55ef595aea91 [file] [log] [blame]
// { dg-do compile { target c++11 } }
int fragile_block(void) {
typedef
[[gnu::aligned (16)]] // { dg-error "standard attributes in middle of decl-specifiers" }
// { dg-warning "attribute ignored" "" { target *-*-* } .-1 }
struct {
int i;
} XmmUint16;
return 0;
}