URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [memfriend5.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }// Copyright (C) 2003 Free Software Foundation// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>// Member template function of member class template as friendtemplate <class T> struct A {template <class U> struct B {template <class V> void f(V);};};class X {int i;template <class T> template <class U> template <class V>friend void A<T>::B<U>::f(V);};template <class T> template <class U> template <class V>void A<T>::B<U>::f(V){X x;x.i = 0;}int main(){A<char>::B<char> a1;a1.f(0);}
Go to most recent revision | Compare with Previous | Blame | View Log
