blob: 1480622d3651700071c0c358725f28d06b13eea4 [file] [log] [blame]
template <int N>
struct A { };
template <int Q>
void g()
{
const int M ( Q );
A<M> a;
}
void h()
{
g<3>();
}