1 2 3 4 5 6 7 8 9
/* { dg-do compile } */ void foo () { int f = 0; #pragma omp scope firstprivate(f) /* { dg-error "firstprivate variable 'f' is private in outer context" } */ f++; }