aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/spec2.C
blob: de0fe4c151122bcc0f4a0fc690083869bd91759b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do compile }

// Origin: <schmid@snake.iap.physik.tu-darmstadt.de>

// Bug: Overloading of ordinary and template member function
// which enclosing class is specialized is not handled correctly.

template <class T>
struct A
{
    void f(T) {}
};

template<>
struct A<int>
{
    void f(int) {}
    template <class T> void f(T) {}
};

template
void A<int>::f(int);