LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / pr27499.c
blob0de2e0686f15bebd1e98a48a177ff8fa0a7ff297
1 /* PR c/27499 */
2 /* { dg-do compile } */
4 extern void bar (unsigned int);
6 void
7 foo (void)
9 unsigned int i;
10 #pragma omp parallel for
11 for (i = 0; i < 64; ++i)
12 bar (i);