mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 23:12:19 +00:00
13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
(module
|
|
(type $v (func))
|
|
(memory $0 1)
|
|
(export "test" (func $namespace/test))
|
|
(export "memory" (memory $0))
|
|
(func $namespace/Outer.Inner.aFunc (; 0 ;) (type $v)
|
|
(nop)
|
|
)
|
|
(func $namespace/test (; 1 ;) (type $v)
|
|
(call $namespace/Outer.Inner.aFunc)
|
|
)
|
|
)
|