2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / goto.C
blobf138ec2be93a282d07ae3c004d7f1820f4ad6077
1 // { dg-do assemble  }
3 template<class T>
4 void compute(T) {
5     goto Exit;
6 Exit: ;
7     }
9 int main() 
11   compute(0);