blob: 89e2a4d2c82f23ac764cd43522fc52fca37e5370 [file] [log] [blame]
// Build don't link:
// GROUPS passed ARM-compliance
// arm file
// From: belley@cae.ca (Benoit Belley 3218)
// Subject: Bad access control with private constructor and derivation
// Date: Fri, 28 May 1993 12:39:57 -0400 (EDT)
#include <iostream.h>
class X
{
public:
void f();
private:
X();
};
class Y : public X
{
public:
Y();
};
X::X()
{// ERROR - .*
cout << "X::X()" << endl;
}
void X::f()
{
cout << "X::f()" << endl;
}
Y::Y()
{// ERROR - within this
cout << "Y::Y()" << endl;
}
int main()
{
Y y;
y.f();
}