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

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

// Bug: ICE during invalid instantiation of member function
// which enclosing class is specialized.

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

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

template
void A<int>::f(int);		// { dg-error "not match" }