flst / upstream /emscripten /test /other /exceptions_modes_symbols_defined.cpp
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
88 Bytes
int main () {
try {
throw 42;
} catch (int e) {
return e;
}
return 0;
}