Files
uce/site/tests/wasm-kill/oob.uce
T
2026-06-13 08:42:31 +00:00

9 lines
251 B
Plaintext

// W4/W5 kill-test: explicit guest trap. Native must not run this page; the
// wasm backend converts it into a clean UCE error page and keeps serving.
RENDER(Request& context)
{
print("about to trap\n");
__builtin_trap();
print("unreachable\n");
}