PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / pr70289.c
blob6d5222249b64ec6cf77122b0f1bbd39ad3c061e3
1 int
2 main ()
4 int i;
5 static int temp;
7 #pragma acc parallel reduction(+:temp)
9 temp++;
12 return 0;