]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp1z/nontype-auto8.C
invoke.texi: Document -std=c++17 and -std=gnu++17 and document c++1z and gnu++1z...
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto8.C
1 // PR c++/79549
2 // { dg-options -std=c++17 }
3
4 template <auto...>
5 struct meow;
6
7 template <auto C>
8 struct meow<C> { };
9
10 meow<1> m;