summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gomp/pr37189.C
blob: a83957ea2a34fc5143779a7b20c4155506666fda (plain)
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 &)
{
}

void
foo ()
{
  T t;
  #pragma omp task
    bar (t);
}