wasmtime-cli 46.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
;;! gc = true

(module
  (type $a (array funcref))
  (func (export "hi") (result funcref)
    (array.get $a (array.new_default $a (i32.const 10)) (i32.const 3))
  )
)

(assert_return (invoke "hi") (ref.null func))