repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp30.C
blob
f7b9ce7bfbc3928891c5dc353aa8ba8ba160eb8d
1
// PR c++/78898
2
3
struct A {
4
template <class T> A(T);
5
template <template <typename> class SmartPtr> A(SmartPtr<int>) { A(0); }
6
};