OSDN Git Service

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