view gcc/testsuite/g++.dg/template/friend25.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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)
};