* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-unify-2.C
blob0a7acba61dfe8aa71a771ae1534f89a408707fb6
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin: PR c++/40155
3 // { dg-do compile { target c++11 } }
5 template <typename T> struct identity
6 {  typedef T type;  };
8 template <typename RT, typename... A>
9 int forward_call(RT (*) (A...), typename identity<A>::type...);
11 int g (double);
13 int i = forward_call(&g, 0);