Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / sections-3.c
blobd8fb2a09d3059e4a734e4dfbd8c13d5cf325adfe
2 // { dg-do compile }
4 extern void bar (void);
6 int main (void)
8 #pragma omp parallel sections nowait /* { dg-error "'nowait'" } */
10 #pragma omp section
11 { bar(); }
12 #pragma omp section
13 { bar(); }