aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/init10.C
blob: 1480622d3651700071c0c358725f28d06b13eea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
template <int N>
struct A { };

template <int Q>
void g()
{
    const int M ( Q );

    A<M> a;
}

void h()
{
    g<3>();
}