OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / warn2.C
1 // Build don't link:
2 // Special g++ Options: -Wall
3 // Origin: Jeroen@MMR.be
4
5 template <typename T>
6 void f()
7 {
8   for(;;)
9     for(;;)
10       goto a;
11
12  a:
13   ;
14 }
15
16 void g()
17 {
18   f<long>();
19 }