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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [friend5.C] - Rev 823

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

// { dg-do compile }

// Origin: aroach@stoic.electriceyeball.com

// PR c++/3332: Friend function lookup in class defined outside its
// namespace

namespace N
{
  class A;
}

class N::A
{
  void x();
  friend void func(void);
};

namespace N
{
  void func(void);
}

void N::func(void)
{
  N::A a;
  a.x();
}

int main()
{
  return 0;
}

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.