rt_gccstream/gcc/testsuite/g++.dg/gomp/pr37189.C

28 lines
207 B
C

// PR c++/37189
// { dg-do compile }
// { dg-options "-fopenmp" }
struct S
{
S () {}
S (S const &) {}
};
struct T
{
S s;
};
void
bar (T &)
{
}
int
foo ()
{
T t;
#pragma omp task
bar (t);
}