blob: 7b0049961927a1784d9c751ba7c78411e013da5d [file] [log] [blame] [edit]
int main() {
EM_ASM({
if (!Module.someProperty) {
alert("Must see a property on Module, that arrived from outside");
abort();
}
});
REPORT_RESULT(0);
return 0;
}