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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp18.C
blob
095c07fb9270e324ad9c12a48f3e381b953ba195
1
template <template <typename> class T>
2
void f(T<int>) {}
3
4
template <typename T>
5
union U {};
6
7
void g() {
8
f(U<int>());
9
}
10