Sign in
chromium
/
external
/
github.com
/
emscripten-core
/
emscripten
/
b39bb50eb9f2c8c43d69aca8582c7c57634a0f04
/
.
/
tests
/
binaryen_async.c
blob: 02a43306d4a8ee0f3a3a8f1b0ebc8bd739833fc1 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<emscripten.h>
int
main
()
{
printf
(
"hello, world!\n"
);
int
result
=
EM_ASM_INT_V
({
return
Module
.
sawAsyncCompilation
|
0
;
});
REPORT_RESULT
();
return
0
;
}