blob: 31d95f2d2dfcee049b97464b71503bc90145dfdf [file] [log] [blame]
// 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);
}