RosettaCodeData/Task/Halt-and-catch-fire/C++/halt-and-catch-fire.cpp
2023-07-01 13:44:08 -04:00

5 lines
74 B
C++

#include <stdexcept>
int main()
{
throw std::runtime_error("boom");
}