This is the code i have trouble understanding:
class A
{
protected:
int _i;
A () : _i(0) { }
~A () { }
};
class B: public A
{
public:
A *_pa;
B() : A(), _pa(new A())
{ }
~B ()
{
delete _pa;
}
};
int main ()
{
A a; //ERROR
B b; //ERROR
}
When trying to instantiate a class of type A i get an error because it's constructor is protected. But why can't I instantiate a class of type B? The class has access to protected members of A (including the ctor) so it should compile.

A? – Tyler Jandreau Feb 13 at 13:52