Dziedziczenie konstruktora C ++ 11 i konstruktory bez parametrów

W tym fragmencie kodu, dlaczego konstruktor A bez parametrów nie jest dziedziczony? Czy istnieje specjalna reguła uniemożliwiająca dziedziczenie konstruktorów bez parametrów?

struct A {
    A(void *) {}
    A() {}
};

class B : public A {
public:
    using A::A;
    B(int x) {}
};

void f() {
    B b(1);
    B b2(nullptr);
    B b3; // error
}

clang ++ -std = c ++ 11 podaje ten błąd, a g ++ -std = c ++ 11 daje podobny komunikat o błędzie:

td.cpp:15:7: error: no matching constructor for initialization of 'B'
    B b3; // error
      ^
td.cpp:9:5: note: candidate constructor not viable: requires single argument 'x', but no arguments
      were provided
    B(int x) {}
    ^
td.cpp:8:14: note: candidate constructor (inherited) not viable: requires 1 argument, but 0 were
      provided
    using A::A;
             ^
td.cpp:2:5: note: inherited from here
    A(void *) {}

questionAnswers(2)

yourAnswerToTheQuestion