* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto10.C
blob38d070ccaae852044525ade366edaad6a5407af9
1 // PR c++/80096
2 // { dg-options -std=c++17 }
4 template<auto> struct A
6   template<int> struct B {};
7 };
9 A<0> a;