* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic66.C
blobbf86deee8fddbe51304cf66bbf7584ad4c3e4816
1 // { dg-do compile { target c++11 } }
3 template<typename Result, typename Functor, typename... ArgTypes>
4 Result bind(Functor, ArgTypes...) { return Result(); }
6 void f()
8   bind<int>(17, 20, 22);