fork download
  1. #include <string>
  2.  
  3. using namespace std;
  4.  
  5. void remove(string name)
  6. {
  7. ;;;;;;
  8. }
  9.  
  10. int main()
  11. {
  12. remove("ABCDEF");
  13. remove(string("ABCDEF"));
  14. string a = "ABCDEF";
  15. remove(a);
  16. return 0;
  17. }
Success #stdin #stdout 0s 2980KB
stdin
Standard input is empty
stdout
Standard output is empty