OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [memfriend1.C] - Rev 149

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 function of class template as friend

template<class T> struct A
{
  void f();
};

class C {
  int i;
  template<class T> friend void A<T>::f();
};

template<class T> struct A<T*>
{
  void f();
};

template<> struct A<char>
{
  void f();
};

template<class T> void A<T>::f()
{
  C c;
  c.i = 0;
}

template<class T> void A<T*>::f()
{
  C c;
  c.i = 0;
}

void A<char>::f()
{
  C c;
  c.i = 0;
}

int main()
{
  A<int> a1;
  a1.f();
  A<int *> a2;
  a2.f();
  A<char> a3;
  a3.f();
}

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.