mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
21 lines
201 B
C
21 lines
201 B
C
// PR c++/26691
|
|
|
|
struct A
|
|
{
|
|
int n;
|
|
A (int i = 3) : n (i) {}
|
|
};
|
|
|
|
int
|
|
main ()
|
|
{
|
|
A a;
|
|
int err = 0;
|
|
#pragma omp parallel private (a) reduction (+:err)
|
|
if (a.n != 3)
|
|
err++;
|
|
|
|
return err;
|
|
}
|
|
|