(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
var-templ31.C
// PR c++/66061
// { dg-do compile { target c++14 } }

template<int...>
int x = 1;

template<int n, int... m>
int x<n, m...> = 1;