Files
llgo/c/setjmp/demo/_code/try_catch.cpp
2024-06-07 14:29:16 +08:00

11 lines
147 B
C++

extern "C" void throwCppException();
int main() {
try {
throwCppException();
} catch (...) {
throw;
}
return 0;
}