C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr88949.C
blob04d2415971a658d6f4a7b3c40a6d26c8890bb447
1 // PR c++/88949
2 // { dg-do compile }
4 struct A {
5   int a;
6   A (int x) : a (x) {
7 #pragma omp parallel firstprivate (a)
8     --a;
9   }
10   void foo () {
11 #pragma omp parallel firstprivate (a)
12     --a;
13   }
16 int c;
18 int
19 main ()
21   A d(c);
22   d.foo ();