OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / gomp / pr34608.C
1 // PR middle-end/34608
2 // { dg-do compile }
3 // { dg-options "-ftest-coverage -fopenmp" }
4
5 struct A
6 {
7   ~A () throw ();
8 };
9
10 void foo (A);
11
12 void
13 bar ()
14 {
15 #pragma omp parallel
16   foo (A ());
17 }
18
19 // { dg-final { cleanup-coverage-files } }