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
/
pr84557.C
blob
cd215901aefdc73605e824d04567cf07f26bdf0c
1
// PR c++/84557
2
// { dg-do compile }
3
4
template<int> struct A {};
5
template<int> struct B {};
6
7
void
8
foo ()
9
{
10
#pragma omp parallel firstprivate (A) // { dg-error "is not a variable in clause" }
11
;
12
#pragma omp parallel firstprivate (B<0>) // { dg-error "is not a variable in clause" }
13
;
14
}