1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// 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); }