aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic43.C
blob: b2f1f8dc05adedcbf59d5033f5619d5dd9b30ad3 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }
template<typename... Args>
int f(const Args&...);

void g()
{
  int (*fp)(const int&, const float&) = &f;
}