aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/gomp/scope-4.c
blob: 924ae9cbb24ffba78f3484ef4a8423a4c98d00d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR middle-end/102504 */
/* { dg-do compile } */

int
foo ()
{
  int r = 0;
  #pragma omp scope reduction(+:r)	/* { dg-error "reduction variable 'r' is private in outer context" } */
  r++;
  return r;
}