OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / gomp / pr51339.c
1 /* PR c/51339 */
2 /* { dg-do compile } */
3 /* { dg-options "-fopenmp" } */
4
5 char g[] = "g";
6
7 void
8 foo (void)
9 {
10 #pragma omp parallel sections firstprivate (g) lastprivate (g)
11   {
12   #pragma omp section
13     g[0] = 'h';
14   }
15 }