2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto8.C
blob9b26d8a81c1a9b00dec07c634706df1212085158
1 // PR c++/79549
2 // { dg-do compile { target c++17 } }
4 template <auto...>
5 struct meow;
7 template <auto C>
8 struct meow<C> { };
10 meow<1> m;