Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
pthread
/
test_pthread_unhandledrejection.c
blob: 0945a0c575cf8d44aae9771cd2bca6b7be906ef7 [
file
]
#include
<emscripten/emscripten.h>
int
main
()
{
EM_ASM
({
Promise
.
reject
(
"rejected!"
);
});
emscripten_exit_with_live_runtime
();
}