mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
(module
|
|
(type $v (func))
|
|
(memory $0 0)
|
|
(export "foo" (func $inlining-recursive/foo))
|
|
(export "memory" (memory $0))
|
|
(func $inlining-recursive/foo (; 0 ;) (type $v)
|
|
(call $inlining-recursive/foo)
|
|
)
|
|
)
|