Files
wasmtime/filetests/trap_stackoverflow.wat

10 lines
94 B
Plaintext

(module
(func $foo
(call $main)
)
(func $main
(call $foo)
)
(start $main)
)