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
2014-02-05 Balaji V. Iyer <balaji.v.iyer@intel.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr27359.C
blob
603898c32b1f847c2d4d7b22d67da440320622da
1
// PR c++/27359
2
// { dg-do compile }
3
4
void
5
foo ()
6
{
7
#pragma omp parallel for
8
for (int i; i < 1; ++i) // { dg-error "expected|was not declared" }
9
;
10
}