blob: b9c8cffb02710e6d57af30b59e97d94b8bb892ed [file] [log] [blame]
// { dg-options "-std=gnu++0x" }
template<typename F, typename... BoundArgs>
class bound_functor
{
public:
bound_functor(const BoundArgs&... bound_args);
};
template<typename F, typename... BoundArgs>
bound_functor<F, BoundArgs...>::bound_functor(const BoundArgs&...)
{
}