(module
 (type $i (func (result i32)))
 (memory $0 1)
 (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)
 )
)