fork(1) download
  1. class noncopyable {
  2. public:
  3. noncopyable(noncopyable &&) noexcept;
  4.  
  5. noncopyable &operator=(noncopyable &&) noexcept;
  6.  
  7. protected:
  8. noncopyable() = default;
  9.  
  10. ~noncopyable() = default;
  11.  
  12. noncopyable(const noncopyable &) = delete;
  13.  
  14. noncopyable &operator=(const noncopyable &) = delete;
  15. };
  16.  
  17. class C: noncopyable {
  18. public:
  19. // compiles if this line is uncommented
  20. // C(C&& c);
  21.  
  22. C() {}
  23.  
  24. // also compiles if this is commented
  25. ~C() {}
  26. };
  27.  
  28. C a() {
  29. return {};
  30. }
  31.  
  32. C b() {
  33. return a();
  34. }
  35.  
  36. int main() {
  37. return 0;
  38. }
Compilation error #stdin compilation error #stdout 0s 3408KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'C b()':
prog.cpp:31:11: error: use of deleted function 'C::C(const C&)'
  return a();
           ^
prog.cpp:17:7: note: 'C::C(const C&)' is implicitly deleted because the default definition would be ill-formed:
 class C: noncopyable {
       ^
prog.cpp:17:7: error: use of deleted function 'noncopyable::noncopyable(const noncopyable&)'
prog.cpp:12:5: note: declared here
     noncopyable(const noncopyable &) = delete;
     ^
stdout
Standard output is empty