aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/nontype17.C
blob: f3a4480c9e337bc44ebe03576dc6e32e368346bb (plain)
1
2
3
4
5
6
7
8
// PR c++/35282

template<int> struct A
{
    template<int> void foo();
};

template<> template<int> void A<0>::foo() {}