#include <string>

void asd(std::string i) {
}

int main(void)
{
  asd("22");

  return 0;
}
