Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / ext / is_pod_98.C
blob80a87c825c40d7c70fc5457548002e24129ba108
1 // PR c++/43333
2 // { dg-options "-std=c++98" }
3 // { dg-do run }
5 struct strPOD
7   const char *const foo;
8   const char *const bar;
9 };
10 extern "C" void abort (void);
11 int main ()
13   if (!__is_pod (strPOD))
14     abort ();
15   return 0;