aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/gen-attrs-39-1.C
blob: 453fc01a2e994fff433d6636a70421e174c14f42 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile { target c++11 } }

int fragile_block(void) {
  typedef 
  [[gnu::aligned (16)]] // { dg-warning "ignored" }
  struct  {
    int i;
  } XmmUint16;
  return 0;
}