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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [inherit/] [using1.C] - Rev 847

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

// Test that overloading on 'this' quals works with class using-declarations.

// { dg-do link }

struct A {
  void f() const;
  void f() {}
  void g() const {}
  void g();
  void h() const;
  void h();
  void i() const;
  void i() {}
};

struct B: private A {
  using A::f;
  using A::g;
  void h () const {}
  using A::h;
  void i () const {}
  using A::i;
};

int main()
{
  B b1;
  const B b2 = B();

  b1.f ();
  b2.g ();
  b2.h ();
  b1.i ();
}

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.