blob: 2e9ca6b207fab77aaad7517c151d858248a3216c [file] [log] [blame]
// PR c++/35337
// { dg-do compile }
// { dg-options "-fopenmp" }
struct A { };
void
foo ()
{
#pragma omp parallel firstprivate(A) // { dg-error "struct A\[^\n\]*is not a variable" }
;
}
void
bar ()
{
#pragma omp for lastprivate(A) // { dg-error "struct A\[^\n\]*is not a variable" }
for (int i = 0; i < 10; i++)
;
}