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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
fntmpdefarg6.C
blob
1e0dc54092d272dce3abc4c88cecb3ca6f569f46
1
// { dg-do compile { target c++11 } }
2
3
template <class T>
4
struct A {
5
template <int I = 42, int J = (T)42> int f() { return I; }
6
template <int I = 42> int g() { return f(); }
7
};