fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class foo{
  5. public:
  6. foo(){}
  7. int a;
  8. };
  9.  
  10. foo CreateFoo(){
  11. foo *bar = new foo();
  12. return *bar;
  13. }
  14.  
  15. int main()
  16. {
  17. foo bar = CreateFoo();
  18. delete(bar);
  19. return 0;
  20. }
Compilation error #stdin compilation error #stdout 0s 3408KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'int main()':
prog.cpp:18:12: error: type 'class foo' argument given to 'delete', expected pointer
  delete(bar);
            ^
stdout
Standard output is empty