]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp1z/nontype-auto15.C
PR c++/89966 - error with non-type auto tparm.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto15.C
1 // PR c++/89966
2 // { dg-do compile { target c++17 } }
3
4 template < auto a0 >
5 void f0() { }
6 void f0_call() { f0< sizeof(int) >(); }