C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr82054.C
blob706dd8369689b66392c966a28f1f57f05c8b33ef
1 // { dg-do compile }
2 // { dg-additional-options "-g" }
4 class a
6   bool b ();
7 };
8 bool
9 a::b ()
11 #pragma omp parallel
12   ;
14   return true;