summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/alignas1.C
blob: d73c875d6374a021290ed0e284a7829adccfef8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/65734
// { dg-do compile { target c++11 } }

template <class T> struct A
{
  T t;
};

typedef A<int> T[4] alignas (2 * alignof (int));
A<int> a[4];

typedef A<char> T2[4] alignas (2 * alignof (int));

#define SA(X) static_assert((X),#X)
SA(alignof (T) == 2 * alignof(int));
SA(alignof (T2) == 2 * alignof(int));