PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic54.C
blob3fbeefdaf7cd5dcd6b91a4c1f9c715b1df167d09
1 // { dg-do compile { target c++11 } }
2 template<typename F, typename... BoundArgs>
3 class bound_functor
5  public:
6   bound_functor();
7 };
9 template<typename F, typename... BoundArgs>
10 bound_functor<F, BoundArgs...>::bound_functor()