kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

host_import_unbound.wat (309B)


      1 (module
      2   ;; Declares an import the test harness does not bind. Instantiation must
      3   ;; fail cleanly (not run with a dangling or NULL import slot).
      4   (import "env" "host_unbound" (func $host_unbound (param i32) (result i32)))
      5   (func (export "test_main") (result i32)
      6     i32.const 0
      7     call $host_unbound))