blob: 4f5bb2834c459cb119699b593140943a6a9cadc4 [file] [log] [blame]
// PR middle-end/26913
struct A
{
~A () throw ();
};
void foo (A);
A bar () throw ();
void baz ()
{
#pragma omp parallel
{
A a;
foo (bar ());
}
}