blob: a83957ea2a34fc5143779a7b20c4155506666fda [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 &)
{
}
void
foo ()
{
T t;
#pragma omp task
bar (t);
}