assemblyscript/tests/compiler/infer-type.optimized.wast
2017-12-23 13:48:04 +01:00

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)
)
)