1 // PR c++/79549
2 // { dg-do compile { target c++17 } }
3 
4 template <auto...>
5 struct meow;
6 
7 template <auto C>
8 struct meow<C> { };
9 
10 meow<1> m;
11