repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
init
/
for2.C
blob
d66fea30ef212166d4da9eef33858700939032a4
1
// { dg-do compile }
2
// PR 16012: Got the scope of I incorrect in templates only.
3
4
template<int> void foo()
5
{
6
for (int i=0 ;;) ;
7
int i;
8
}
9
10
void bar()
11
{
12
foo<0>();
13
}