pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic46.C
blob8b81a363bf1f64d73069884940278cf94a704e37
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Args>
3 int& f(Args&...);
5 template<typename... Args>
6 float& f(const Args&...);
8 int& g(int x, float y)
10   return f(x, y);