Commit f2551f35 by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

re PR c++/2739 (g++ allows accessing private members)

	PR c++/2739
	* g++.dg/other/access2.C: New test.

From-SVN: r60605
parent 348d9921
2002-12-29 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/2739
* g++.dg/other/access2.C: New test.
2002-12-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
* g++.dg/other/anon-struct.C: No longer fails
......
// { 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();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment