blob: 9e51f0e3c6df7c8a98e7e1764a56c7674c02133b [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed ARM-compliance
// unsorted.2 file
// Message-Id: <BpBu19.GrF@math.waterloo.edu>
// Date: Thu, 4 Jun 1992 15:07:56 GMT
// Subject: access control
// From: gjditchf@plg.waterloo.edu (Glen Ditchfield)
class X {
private:
enum E1 {a1, b1}; // { dg-error "" } private
public:
enum E2 {a2, b2};
};
void h(X* p) {
X::E2 e2;
int x2 = X::a2;
X::E1 e1; // { dg-error "" } within this context
int x1 = X::a1; // { dg-error "" } Should be rejected, and is.
}