1 // { dg-do compile { target c++11 } }
2 template<typename T> struct wrap { };
4 template<typename... Args>
5 int& f(const Args&...);
7 template<typename... Args>
8 float& f(const wrap<Args>&...);
10 int& g(int x, float y, double z)
15 float& h(wrap<int> x, wrap<float> y, wrap<double> z)