repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
S/390: Deprecate g5 and g6 CPU levels
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr26823-1.C
blob
d24eddbdfb265085fc5afb4d9d9b920cde8cfed6
1
// PR middle-end/26823
2
// { dg-do compile }
3
4
struct A
5
{
6
~A () {}
7
};
8
9
struct B
10
{
11
A a;
12
B ();
13
};
14
15
void
16
foo ()
17
{
18
#pragma omp parallel
19
{
20
B b[1];
21
new int;
22
}
23
}