* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic55.C
blobbdf25cf3e22474d0944bb5c9f45c99e534678dc9
1 // { dg-do compile { target c++11 } }
2 template<typename F, typename... BoundArgs>
3 class bound_functor
5  public:
6   bound_functor(const BoundArgs&... bound_args);
7 };
9 template<typename F, typename... BoundArgs>
10 bound_functor<F, BoundArgs...>::bound_functor(const BoundArgs&...)