PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / typedef-redecl2.c
blobc2314c78eaa4ee0fe866d66140adafd16f3e9ecd
1 /* PR c/70297 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 #define N 64
7 typedef int T;
8 typedef int T __attribute__((aligned (N)));
9 typedef int T __attribute__((aligned (N * 2)));
10 typedef int T __attribute__((aligned (N)));
11 typedef int T;
13 _Static_assert (_Alignof (T) == N * 2, "N * 2");