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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [access6.C] - Rev 338

Compare with Previous | Blame | View Log

// { dg-do compile }

// Origin: David Baron <dbaron@fas.harvard.edu>

// PR c++/3765: Changing access from public to private by member
// using declaration.

class A
{
  public:
    int foo() { return 1; }     // { dg-error "inaccessible" }
};

class B : public A
{
  private:
    using A::foo;
};

int main()
{
  B b;
  return b.foo();               // { dg-error "this context" }
}

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.