URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [for2.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// PR 16012: Got the scope of I incorrect in templates only.
template<int> void foo()
{
for (int i=0 ;;) ;
int i;
}
void bar()
{
foo<0>();
}
Go to most recent revision | Compare with Previous | Blame | View Log