Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/closure_error.c
4128 views
1
#include <emscripten.h>
2
3
int main() {
4
EM_ASM({
5
thisVarDoesNotExist++;
6
thisVarDoesNotExistEither++;
7
});
8
}
9
10