PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / init10.C
blob1480622d3651700071c0c358725f28d06b13eea4
1 template <int N>
2 struct A { };
4 template <int Q>
5 void g()
7     const int M ( Q );
9     A<M> a;
12 void h()
14     g<3>();