(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
switch1.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
void f ()
{
  int i;
  
  switch (int i = 3) {
  }
}

template void f<int>();