MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / main

Function main

test/core/test_i64_invoke_bigint.cpp:18–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16}
17
18int main() {
19 int64_t x;
20 try {
21 puts("try");
22 x = foobar(big, 1);
23 printf("ok: 0x%llx.\n", x);
24 x = foobar(1337, 1);
25 printf("should not get here\n");
26 __builtin_trap();
27 } catch(int e) {
28 printf("caught: %d\n", e);
29 }
30 printf("done");
31 return 0;
32}

Callers

nothing calls this directly

Calls 3

putsFunction · 0.85
printfFunction · 0.85
foobarFunction · 0.70

Tested by

no test coverage detected