S/390: Deprecate g5 and g6 CPU levels
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr26823-1.C
blobd24eddbdfb265085fc5afb4d9d9b920cde8cfed6
1 // PR middle-end/26823
2 // { dg-do compile }
4 struct A
6   ~A () {}
7 };
9 struct B
11   A a;
12   B ();
15 void
16 foo ()
18 #pragma omp parallel
19   {
20     B b[1];
21     new int;
22   }