2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic51.C
blobe072caae4c4683a5717b161fa0af51d4ff674eb1
1 // { dg-do compile { target c++11 } }
2 template<typename T1, typename T2>
3 float& f(T1, T2);
5 template<typename... Args>
6 int& f(Args...);
8 float& g() { 
9   return f(17, 3.14159);