OSDN Git Service

2014-02-26 Fabien Chene <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / nontype17.C
1 // PR c++/35282
2
3 template<int> struct A
4 {
5     template<int> void foo();
6 };
7
8 template<> template<int> void A<0>::foo() {}