1 // PR c++/88555
2 // { dg-do compile { target c++11 } }
3 
4 template <class ...> struct T {};
5 
6 template <int ...Indices>
test()7 void test() {
8     using Test = T<decltype((Indices, char(0)))...>;
9 }
10