repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
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 } }