OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[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() {}