2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / switch1.C
blob45bc9510b0abb050bd7db70d7754bb7e875fe750
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class T>
5 void f ()
7   int i;
8   
9   switch (int i = 3) {
10   }
13 template void f<int>();