* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-nested2.C
blobce18f99ea50b26279a05ea8406d9e75ea379d826
1 // PR c++/84839
2 // { dg-do compile { target c++11 } }
4 template<typename... T>
5 struct S {
6     using fptr = void(*)(T... x, decltype(x)... y);
7 };
9 using F = S<int>::fptr;