1 // PR c++/66061
2 // { dg-do compile { target c++14 } }
3 
4 template<int...>
5 int x = 1;
6 
7 template<int n, int... m>
8 int x<n, m...> = 1;
9