1/* PR c/52181 */
2/* { dg-do compile } */
3
4extern const int v1[];
5const int __attribute__((aligned(16))) v1[] = { 1 };
6extern const int __attribute__((aligned(16))) v2[];
7const int v2[] = { 1 };
8extern const int __attribute__((aligned(16))) v3[];
9const int __attribute__((aligned(16))) v3[] = { 1 };
10const int __attribute__((aligned(16))) v4[] = { 1 };
11int test[(__alignof__ (v4) != __alignof__ (v1)		/* { dg-bogus "is negative" } */
12	 || __alignof__ (v4) != __alignof__ (v2)
13	 || __alignof__ (v4) != __alignof__ (v3)) ? -1 : 0];
14