OSDN Git Service

gcc/:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / pr45112.C
1 /* { dg-do compile } */
2
3 struct JSString
4 {
5   unsigned char mLength;
6   static JSString unitStringTable[];
7 };
8
9 JSString JSString::unitStringTable[] __attribute__ ((aligned (8))) = { 1 };
10
11 int bug [__alignof__ (JSString::unitStringTable) >= 8 ? 1 : -1];
12