(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wunused-var-25.C
// { dg-do compile { target c++14 } }
// { dg-options "-Wunused-but-set-variable" }

template <int... I> struct A { };
template <int... I>
auto f()
{
  constexpr int ar[sizeof...(I)+1] = {I...};
  return A<ar[I]...>();
}

int main()
{
  f<>();
}