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
FSF GCC merge 02/23/03
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
mangle10.C
blob
d5782ba6dfcc5d1f42828b71c7cfd34b1bf278df
1
// { dg-options "-fabi-version=0" }
2
3
template <template <typename> class Q>
4
void f (typename Q<int>::X) {}
5
6
template <typename Q>
7
struct S {
8
typedef int X;
9
};
10
11
template void f<S> (int);
12
13
// { dg-final { scan-assembler _Z1fI1SEvNT_IiE1XE } }