2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / codegen1.C
blobc07083a0a79ec5e7c99557e3221c58a3c8141e52
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 int i;
6 struct S
8   ~S () 
9   {
10   }
13 template <class T>
14 void f (T, S)
16   i = 0;
19 int main ()
21   i = 1;
22   f (3, S ());
23   return i;