(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
variadic-nested2.C
// PR c++/84839
// { dg-do compile { target c++11 } }

template<typename... T>
struct S {
    using fptr = void(*)(T... x, decltype(x)... y);
};

using F = S<int>::fptr;