RosettaCodeData/Task/Halt-and-catch-fire/C++/halt-and-catch-fire.cpp

6 lines
74 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <stdexcept>
int main()
{
throw std::runtime_error("boom");
}