How inheriting a noncopyable class with a private copy constructor and an assignment operator is going to prohibit the use of copy constructor and assignment operator on the derived class? Please consider the following scenario while replying, individually,
What if, Default copy constructor and assignment operator are generated by the compiler in the derived class and not added by the programmer
What if, Copy constructor and assignment operator are defined and declared public in the derived class by the programmer
What if, Copy constructor and assignment operator are defined and declared private in the derived class by the programmer
The implicit functions will try to call their counterparts in the base class. This won't be possible since those are private to the base class, so you'll get a compilation error. This is how the base class is intended to work.
Then you've defeated the purpose of inheriting from the base class; your derived class is now copyable via these functions.
Again, you've defeated the base class and made your class copyable; but only within its member and friend functions.