(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
alias-decl-47.C
// PR c++/65333
// { dg-do compile { target c++11 } }

template <typename T, T... Values> struct A
{
  using type = int;
  template <type... Suffix> using array = A<type, Values..., Suffix...>;
  void
  m_fn1 ()
  {
    array<>::data;
  }
};