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
/
variadic131.C
blob
3006f87ed23502060d11cae0b0440aff22d0ce78
1
// PR c++/38543
2
// { dg-do compile { target c++11 } }
3
4
template< typename ... T > void foo( T ... args );
5
template<> void foo( ){}
6
template<> void foo(int,double){}
7
int main()
8
{
9
foo( 0, 0.0 );
10
return 55;
11
}