blob: b932beab7074ae9e0d594f09f0782a343ae1534f [file] [log] [blame] [edit]
;;; TOOL: wast2json
(module
(export "test" (func $test))
(func $test (param i32) (result i32)
local.get 0
i32.const 100
i32.add))
(invoke "test" (i32.const 1))
(invoke "test" (i32.const 100))
(invoke "test" (i32.const -30))