URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [access2.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: Dirk Mueller <dmuell@gmx.net>
// PR c++/2739
// Access to base class private static member.
class Base {
private:
static int fooprivate;
protected:
static int fooprotected;
public:
static int foopublic;
};
class Derived : public Base {
public:
void test();
};
int Base::fooprivate=42; // { dg-error "private" }
int Base::fooprotected=42;
int Base::foopublic=42;
void Derived::test() {
if ( fooprivate ); // { dg-error "context" }
if ( fooprotected );
if ( foopublic );
}
int main()
{
Derived d;
d.test();
}
Go to most recent revision | Compare with Previous | Blame | View Log