fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. #include <map>
  4.  
  5. using std::string;
  6. using std::map;
  7. void DoSomething(const map<string, string>& m) { }
  8.  
  9.  
  10. int main() {
  11. DoSomething(map<string, string> {
  12. {"a", "x"}, {"b", "y"}
  13. });
  14. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
Standard output is empty