1// PR c++/31748
2
3struct A;
4
5void
6foo ()
7{
8#pragma omp parallel private(A)	// { dg-error "struct A.*is not a variable" }
9  ;
10}
11