* gxxint.texi: G++ now implements namespaces.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / warn2.C
bloba45e518ca4bb87465d5bc066865daff157435384
1 // Build don't link:
2 // Special g++ Options: -Wall
3 // Origin: Jeroen@MMR.be
5 template <typename T>
6 void f()
8   for(;;)
9     for(;;)
10       goto a;
12  a:
13   ;
16 void g()
18   f<long>();