fork download
  1. #include <string>
  2.  
  3. void f(const std::string &s)
  4. {
  5.  
  6. }
  7.  
  8. int main()
  9. {
  10. f({}); // <-- вот оно
  11. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty