2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic131.C
blob3006f87ed23502060d11cae0b0440aff22d0ce78
1 // PR c++/38543
2 // { dg-do compile { target c++11 } }
4 template< typename ... T > void foo( T ... args );
5 template<> void foo( ){}
6 template<> void foo(int,double){}
7 int main()
9   foo( 0, 0.0 );
10   return 55;