mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-29 12:50:35 +00:00
29 lines
359 B
C
29 lines
359 B
C
// PR c++/88988
|
|
// { dg-do compile }
|
|
// { dg-additional-options "-std=c++14" }
|
|
|
|
extern "C" void abort ();
|
|
|
|
template <typename T>
|
|
struct A {
|
|
A () : a(), b()
|
|
{
|
|
[&] ()
|
|
{
|
|
#pragma omp task firstprivate (a) shared (b)
|
|
b = ++a;
|
|
#pragma omp taskwait
|
|
} ();
|
|
}
|
|
|
|
T a, b;
|
|
};
|
|
|
|
int
|
|
main ()
|
|
{
|
|
A<int> x;
|
|
if (x.a != 0 || x.b != 1)
|
|
abort ();
|
|
}
|