blob: 9b26d8a81c1a9b00dec07c634706df1212085158 [file] [log] [blame]
// PR c++/79549
// { dg-do compile { target c++17 } }
template <auto...>
struct meow;
template <auto C>
struct meow<C> { };
meow<1> m;