aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/gomp/pr49223-1.C
blob: 307210fe1d2049286b6c91cff6be63ea50415b35 (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
28
// PR c++/49223
// { dg-do compile }
// { dg-options "-fopenmp" }

template <int N>
struct V
{
  V () {}
  ~V () {}
};

template <int N>
struct S
{
  void foo ()
  {
    V <0> v;
    #pragma omp parallel private (v)
      ;
  }
};

void
bar (void)
{
  S <0> s;
  s.foo ();
}