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

int fragile_block(void) {
  typedef struct [[gnu::aligned (16)]] {
    int i;
  } XmmUint16;
  return 0;
}