OSDN Git Service

2008-03-01 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic55.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename F, typename... BoundArgs>
3 class bound_functor
4 {
5  public:
6   bound_functor(const BoundArgs&... bound_args);
7 };
8
9 template<typename F, typename... BoundArgs>
10 bound_functor<F, BoundArgs...>::bound_functor(const BoundArgs&...)
11 {
12 }