Files
llgo/c/setjmp/trycatch/_code/demo.cpp

6 lines
109 B
C++
Raw Normal View History

2024-06-07 14:12:35 +08:00
#include <stdexcept>
extern "C" void throwCppException() {
throw std::runtime_error("C++ exception");
}