2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / pr45112.C
blob34dd3e1bcd811fba0287c36ef0712a5cdd67ffec
1 /* { dg-do compile } */
3 struct JSString
5   unsigned char mLength;
6   static JSString unitStringTable[];
7 };
9 JSString JSString::unitStringTable[] __attribute__ ((aligned (8))) = { 1 };
11 int bug [__alignof__ (JSString::unitStringTable) >= 8 ? 1 : -1];