9 lines
251 B
Plaintext
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");
|
|
}
|