excerpts from the tutorial...But the compiler not only creates a default constructor for you if you do not specify your own. It provides three special member functions in total that are implicitly declared if you do not declare your own. These are the copy constructor, the copy assignment operator, and the default destructor.
The aforementioned example with class inheritance works well if we simply change the parameterized constructor to a default one or even if we removed it.
To expound further, the compiler cannot generate a default constructor for abc, because the constructor so generated would need to call a constructor with the same signature on the base class, and xyz doesn't have a constructor that takes no arguments.