// PR c++/102870 // { dg-do compile { target c++11 } } template struct integer_sequence; template using make_integer_sequence = integer_sequence<_Tp, __integer_pack(_Num)...>; template using make_index_sequence = make_integer_sequence; template struct Tuple; template using type = Tuple...>; template void f() { Tuple>{}; } // { dg-error "parameter packs not expanded" } int main() { f(); }