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
C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr82054.C
blob
706dd8369689b66392c966a28f1f57f05c8b33ef
1
// { dg-do compile }
2
// { dg-additional-options "-g" }
3
4
class a
5
{
6
bool b ();
7
};
8
bool
9
a::b ()
10
{
11
#pragma omp parallel
12
;
13
14
return true;
15
}