repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
testsuite: fix g++.dg/tree-ssa/pr58483.C
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
switch1.C
blob
45bc9510b0abb050bd7db70d7754bb7e875fe750
1
// { dg-do assemble }
2
// Origin: Mark Mitchell <mark@codesourcery.com>
3
4
template <class T>
5
void f ()
6
{
7
int i;
8
9
switch (int i = 3) {
10
}
11
}
12
13
template void f<int>();
14
15