blob: 4ce2ba3f2cca83bebadf015b64383b8bb17a7beb [file] [log] [blame]
// { dg-do compile }
// Origin: Steven Bosscher <steven@gcc.gnu.org>
// Serge Belyshev <belyshev@lubercy.com>
// PR c++/18825: ICE member as friend
template<class T> class A
{
void f (); // { dg-error "private" }
};
template<class T> class B
{
friend void A<T>::f (); // { dg-error "this context" }
};
int f ()
{
B<int> b; // { dg-error "instantiated" }
}