#include <stack>
#include <functional>
int main()
{
std::stack<std::function<int()>> s;
s.push(main);
return s.top()();
}
次の診断が表示されます。
result: runtime error time: 0.04s memory: 39704 kB signal: 11 (SIGSEGV)
何が起きてる?