Could someone please explain the following compiler error to me:

struct B
{
};

template <typename T>
struct A : private T
{
};

struct C : public A<B>            
{                                                                             
    C(A<B>);   // ERROR HERE
};

The error at the indicated line is:

test.cpp:2:1: error: 'struct B B::B' is inaccessible
test.cpp:12:7: error: within this context

What exactly is inaccessible, and why?

link|improve this question

Unrelated to the problem, What does C(A<B>) mean here? – fizzbuzz Feb 10 at 5:36
1  
@fizzbuzz: Constructor taking an A<B> by value. – Xeo Feb 10 at 5:37
@Xeo, oh yes, A<B> is just a type. – fizzbuzz Feb 10 at 5:49
feedback

3 Answers

up vote 6 down vote accepted

Try A< ::B> or A<struct B>.

Inside of C, unqualified references to B will pick up the so-called injected-class-name, it is brought in through the base class A. Since A inherits privately from B, the injected-class-name follows suit and will also be private, hence be inaccessible to C.

Another day, another language quirk...

link|improve this answer
Dude, you're right! How did you figure that out? – HighCommander4 Feb 10 at 5:38
Good question. My answer looked like "Try A< ::B>. Why? Beats me..." at first. Now, the error message refers to B::B, the constructor, so that was about the only option. And no, I don't know why it tries to select a member function inside a template argument list... – Xeo Feb 10 at 5:41
So, is this parsing quirk intentional, a compiler bug (unlikely since both GCC and Comeau give this error), or under/mis-specification of parsing in the standard? – HighCommander4 Feb 10 at 5:50
1  
All three MSVC, GCC and Clang spew this error, so it must be something in the spec.. I just asked on the llvm IRC channel, will report back. – Xeo Feb 10 at 5:52
2  
I also opened up a follow-up question. – Xeo Feb 10 at 6:04
feedback

The problem is name shielding of struct B . Check it out:

struct B{};

struct X{};

template <class T>
struct A : private T
{};

struct C : public A<B>
{
    C(){
          A<X> t1;     // WORKS
 //       A<B> t2;     // WRONG
          A< ::B> t3;  // WORKS
    }   
};

int main () {
}
link|improve this answer
feedback

You are making A privately inherit from B when you do A<B>, and that means that B::B is private so you can't construct a C.

link|improve this answer
1  
Wrong, A<B> has to construct the B base subobject, and it's accessible there. – Xeo Feb 10 at 5:33
What is B::B? B's implicitly declared default constructor? – HighCommander4 Feb 10 at 5:33
@HighCommander B::B is the implicitly declared default constructor that is made private in A<B>. – Seth Carnegie Feb 10 at 5:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.