OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic45.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Args>
3 int& f(Args...);
4
5 template<typename T1, typename T2>
6 float& f(T1, T2);
7
8 float& g() { 
9   return f(17, 3.14159); 
10 }