aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/friend25.C
blob: fa11defc21ae941904d2774c9fd5db15f58225b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile }

// Origin: Jiangbin Zhao <zhaojiangbin@yahoo.com>

// PR c++/12369: ICE for specialization of member function template
// as friend in ordinary class.

struct A {
    template<class T> T* make() { return new T(); }
};
 
struct B {
    friend B* A::make< B >(); // (1)
};