fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class baseclass {
  5. protected:
  6. int field;
  7.  
  8. public:
  9. baseclass(baseclass const&) = delete;
  10. baseclass& operator=(baseclass const&) = delete;
  11.  
  12. baseclass() : field(0) {}
  13. baseclass(int a) : field(a) {}
  14. };
  15.  
  16. class derived1 : private baseclass {};
  17.  
  18. class derived2 : private baseclass {
  19. public:
  20. derived2() = default;
  21. derived2(derived2 const & other) {
  22. baseclass(other.field);
  23. }
  24. derived2& operator=(derived2 const& other) {
  25. field = other.field;
  26. return *this;
  27. }
  28. };
  29.  
  30.  
  31. int main() {
  32. // your code goes here
  33.  
  34. derived1 d1;
  35. auto d1c = d1;
  36.  
  37. derived2 d2;
  38. auto d2c = d2;
  39.  
  40. return 0;
  41. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'int main()':
prog.cpp:35:13: error: use of deleted function 'derived1::derived1(const derived1&)'
  auto d1c = d1;
             ^
prog.cpp:16:7: note: 'derived1::derived1(const derived1&)' is implicitly deleted because the default definition would be ill-formed:
 class derived1 : private baseclass {};
       ^
prog.cpp:16:7: error: use of deleted function 'baseclass::baseclass(const baseclass&)'
prog.cpp:9:2: note: declared here
  baseclass(baseclass const&) = delete;
  ^
stdout
Standard output is empty