2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / goto2.C
blob5e4b4f0e37d0ca3532824f744e00c06d6437377e
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 int i = 1;
6 template <class T> void test()
8   goto lab;
9  lab: 
10   --i;
13 int main ()
15   test<int>();
16   return i;