blob: 45bc9510b0abb050bd7db70d7754bb7e875fe750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
void f ()
{
int i;
switch (int i = 3) {
}
}
template void f<int>();
|