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
[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
init2.C
blob
b81e4be94b790930a7a67db5f962ebc3515576a2
1
// PR c++/9820
2
3
template <typename T> struct X {
4
template<typename> static int test(...);
5
template<typename> static int test(int *);
6
7
static const int i = sizeof(X<T>::template test<int>(0));
8
};
9
10
template class X<int>;