* pt.c (tsubst_pack_expansion): Set cp_unevaluated_operand while instantiating dummy parms. From-SVN: r258500
10 lines
170 B
C
10 lines
170 B
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;
|