blob: a45e518ca4bb87465d5bc066865daff157435384 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -Wall
// Origin: Jeroen@MMR.be
template <typename T>
void f()
{
for(;;)
for(;;)
goto a;
a:
;
}
void g()
{
f<long>();
}