diff options
Diffstat (limited to 'test/lld/em_asm.cpp')
-rw-r--r-- | test/lld/em_asm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lld/em_asm.cpp b/test/lld/em_asm.cpp index ed89783f8..b8c3db365 100644 --- a/test/lld/em_asm.cpp +++ b/test/lld/em_asm.cpp @@ -1,7 +1,7 @@ #include <emscripten/em_asm.h> int main() { - EM_ASM({ Module.print("Hello world"); }); + EM_ASM({ Module.print("Hello \\ world\t\n"); }); int x = EM_ASM_INT({ return $0 + $1; }, 13, 27); EM_ASM_({ Module.print("Got " + $0); }, x); return 0; |