OSDN Git Service

PR c++/47277
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / gomp / pr31748.C
1 // PR c++/31748
2
3 struct A;
4
5 void
6 foo ()
7 {
8 #pragma omp parallel private(A) // { dg-error "struct A.*is not a variable" }
9   ;
10 }