5 lines
74 B
C++
5 lines
74 B
C++
#include <stdexcept>
|
|
int main()
|
|
{
|
|
throw std::runtime_error("boom");
|
|
}
|