assemblyscript/tests/compiler/named-import-default.untouched.wat

14 lines
377 B
Plaintext
Raw Normal View History

(module
(type $i (func (result i32)))
(global $HEAP_BASE i32 (i32.const 8))
(memory $0 0)
(export "getValue" (func $named-import-default/getValue))
(export "memory" (memory $0))
(func $named-export-default/get3 (; 0 ;) (type $i) (result i32)
(i32.const 3)
)
(func $named-import-default/getValue (; 1 ;) (type $i) (result i32)
(call $named-export-default/get3)
)
)