pr77285-2.C: Require tls_native support.
[gcc.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