Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
other
/
test_pthread_js_exception.c
blob: e3c7473b446b7f592b259242800d620e81dcc334 [
file
]
#include
<emscripten.h>
int
main
()
{
// Cause a JS exception
EM_ASM
({
foo
=
missing
;});
return
0
;
}