aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic66.C
blob: 5c31ae06fd4f1ba1d251a496c054dcff77d68c88 (plain)
1
2
3
4
5
6
7
8
9
// { dg-options "-std=gnu++0x" }

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

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