blob: 49d39d5a4dbd15d2c56ebaabd76d124f7e63f773 [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>
class X
{
public:
void f();
private:
X();
};
class Y : public X
{
public:
Y();
};
X::X()
{// ERROR - .*
std::cout << "X::X()" << std::endl;
}
void X::f()
{
std::cout << "X::f()" << std::endl;
}
Y::Y()
{// ERROR - within this
std::cout << "Y::Y()" << std::endl;
}
int main()
{
Y y;
y.f();
}