repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ctor9.C
blob
819ca1c940107208ace4ab8e8739d79ee9374ad0
1
// PR c++/9050, DR 147, 318
2
3
struct Y
4
{
5
template <typename T> Y (T);
6
template <typename T> void foo (T);
7
};
8
9
template <> Y::Y<int> (int) { }