blob: c87c6bad59f1e5f2942592ef0082be219897c802 [file] [log] [blame]
// PR c++/88555
// { dg-do compile { target c++11 } }
template <class ...> struct T {};
template <int ...Indices>
void test() {
using Test = T<decltype((Indices, char(0)))...>;
}