blob: ce18f99ea50b26279a05ea8406d9e75ea379d826 [file] [log] [blame]
// 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;