blob: 5e4b4f0e37d0ca3532824f744e00c06d6437377e [file] [log] [blame]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
int i = 1;
template <class T> void test()
{
goto lab;
lab:
--i;
}
int main ()
{
test<int>();
return i;
}