URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [goto1.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/14724
// { dg-do run }
int j;
template <class T>
struct C {
C() { ++j; }
~C() { --j; }
};
int main(int, char **) {
{
int i = 0;
again:
C<int> v;
if (++i < 10)
goto again;
}
return j;
}
Go to most recent revision | Compare with Previous | Blame | View Log