aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic66.C
blob: ac92221519890f2ab6c46699202cc2ebc3dc7438 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }

template<typename Result, typename Functor, typename... ArgTypes>
Result bind(Functor, ArgTypes...) { }

void f()
{
  bind<int>(17, 20, 22);
}