fork(6) download
  1. #include <iostream>
  2. #include <string>
  3. #include <map>
  4. using namespace std;
  5.  
  6. struct S
  7. {
  8. map<string, string> m;
  9.  
  10. S()
  11. {
  12. m["key"] = "b";
  13. }
  14.  
  15. const string &func() const
  16. {
  17. return m.find("key")->second;
  18. }
  19. };
  20.  
  21. int main()
  22. {
  23. for (char c : S().func())
  24. cout << c;
  25.  
  26. return 0;
  27. }
  28.  
Runtime error #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
b����key�