PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / fnname4.C
blob65409875eca77e048439b98bd81005307b56fa65
1 // PR c++/59004
3 template<int z> class A {};
5 template<int x>
6 class B {
7 public:
8     static const int y = (x != -1 ? 0 : 0);
10     template<int z> void g(const A<y> &a) {
11         const char *x2 = __func__;
12     }
14 template void B<0>::g<0>(const A<0> &);