2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / label1.C
bloba8baa0812bfe0205c58f42eea2e2c4d3d4abb952
1 // { dg-do assemble  }
3 template <class T>
4 struct S {};
6 template <class T>
7 inline void g(T t)
9  here:
10   S<T> st;
11   goto here;
14 template <class T>
15 void f(T t)
17  here:
18   g(t);
19   goto here;
22 void h()
24   f(3);