Files
llgo/c/setjmp/demo/_code/demo.cpp
2024-06-07 14:12:35 +08:00

6 lines
109 B
C++

#include <stdexcept>
extern "C" void throwCppException() {
throw std::runtime_error("C++ exception");
}