// g++-8 -g -ggdb -O0 -Wall -Wextra -o loop loop.cpp #include static void func(std::string f, int g) { func(f.c_str(), g); } int main() { func("a", 0); return 0; }