OSDN Git Service

PR c++/43856
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic43.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Args>
3 int f(const Args&...);
4
5 void g()
6 {
7   int (*fp)(const int&, const float&) = &f;
8 }