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