C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr84557.C
blobcd215901aefdc73605e824d04567cf07f26bdf0c
1 // PR c++/84557
2 // { dg-do compile }
4 template<int> struct A {};
5 template<int> struct B {};
7 void
8 foo ()
10   #pragma omp parallel firstprivate (A)         // { dg-error "is not a variable in clause" }
11   ;
12   #pragma omp parallel firstprivate (B<0>)      // { dg-error "is not a variable in clause" }
13   ;