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
libgcc: Fix COPY_ARG_VAL initializer (PR 117537)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr26823-2.C
blob
d4747cff5e5af150c9a77c3ecc2cc16a3a62eb8b
1
// PR middle-end/26823
2
// { dg-do compile }
3
4
struct A
5
{
6
~A () {}
7
};
8
9
extern void bar ();
10
11
void
12
foo ()
13
{
14
#pragma omp parallel
15
{
16
{
17
A a;
18
bar ();
19
}
20
{
21
A a;
22
bar ();
23
}
24
{
25
A a;
26
bar ();
27
}
28
}
29
}