;;; TOOL: run-interp
;;; ARGS*: --enable-tail-call
;;; ARGS1: --host-print 
(module
  (import "host" "print" (func $imported (param i32) (result i32)))

  (func (export "f") (result i32)
    i32.const 42
    return_call $imported
    unreachable
  )
)
(;; STDOUT ;;;
called host host.print(i32:42) => i32:0
f() => i32:0
;;; STDOUT ;;)
