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++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr78701.C
blob
6fef926876bbf3554e0001f96935c593be93bfaa
1
// PR c++/58707
2
// { dg-do compile { target c++11 } }
3
4
// ICE during deduction of default parms
5
6
template <class T, T N = T(), bool B = N>
7
void f(T x) {}
8
9
template void f<int> (int);