]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/typedef-redecl.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / typedef-redecl.C
CommitLineData
5fde6a45
MP
1// PR c/70297
2// { dg-do compile { target c++11 } }
3
4#define N 64
5
6typedef int T;
7typedef int T __attribute__((aligned (N)));
8typedef int T __attribute__((aligned (N * 2)));
9typedef int T __attribute__((aligned (N)));
10typedef int T;
11
12static_assert (alignof (T) == N * 2, "N * 2");
This page took 3.008149 seconds and 5 git commands to generate.