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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.other/] [using8.C] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
// { dg-do assemble  }
// { dg-do assemble  }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 14 Nov 2000 
// Contributed by Nathan Sidwell 14 Nov 2000 
// We rejected using decls bringing in functions from a base which would hide a
// We rejected using decls bringing in functions from a base which would hide a
// nested class of the same name, but only if we had no functions by that name
// nested class of the same name, but only if we had no functions by that name
// already. Also, we failed to find that using declaration during lookup. Also
// already. Also, we failed to find that using declaration during lookup. Also
// we failed to reject using declarations which matched the constructor name.
// we failed to reject using declarations which matched the constructor name.
struct A
struct A
{
{
  int f ();
  int f ();
  void D ();
  void D ();
};
};
struct A2 {
struct A2 {
  typedef int f;
  typedef int f;
};
};
struct B : A
struct B : A
{
{
  using A::f;
  using A::f;
  struct f {};
  struct f {};
};
};
struct C : A
struct C : A
{
{
  using A::f;
  using A::f;
  int f (int);
  int f (int);
  struct f {};
  struct f {};
};
};
void foo (B *bp, C* cp)
void foo (B *bp, C* cp)
{
{
  bp->f ();
  bp->f ();
  cp->f ();
  cp->f ();
}
}
struct D : A
struct D : A
{
{
  using A::D;   // { dg-error "" } names constructor
  using A::D;   // { dg-error "" } names constructor
};
};
 
 

powered by: WebSVN 2.1.0

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