URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [memfriend8.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }// Origin: Martin Sebor <sebor@roguewave.com>// PR c++/5369: Member function of class template as friendtemplate <class T>struct S{int foo () {return S<int>::bar ();}private:template <class U>friend int S<U>::foo ();static int bar () { return 0; }};int main (){S<char>().foo ();}
Go to most recent revision | Compare with Previous | Blame | View Log
