summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/nontype-auto8.C
blob: da4c88b81c038f9762b89e708d4dd902395fd5f2 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/79549
// { dg-options -std=c++1z }

template <auto...>
struct meow;

template <auto C>
struct meow<C> { };

meow<1> m;