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 ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
sfinae25.C
blob
e9ee83e1200048c6ab2c51310d989139002c654c
1
template <int I>
2
struct A { };
3
4
template <int J>
5
void f(A<1/J>);
6
7
template <int J>
8
void f(...) { }
9
10
int main()
11
{
12
f<0>();
13
}
14