mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-06 02:52:17 +00:00
17 lines
348 B
Plaintext
17 lines
348 B
Plaintext
(module
|
|
(func $foo (result i32)
|
|
(local i32)
|
|
get_local 0
|
|
)
|
|
(export "foo" (func $foo))
|
|
)
|
|
|
|
;; STDOUT (update this section with `BLESS_TESTS=1` while running tests)
|
|
;; (module
|
|
;; (type (;0;) (func (result i32)))
|
|
;; (func $foo (type 0) (result i32)
|
|
;; (local i32)
|
|
;; local.get 0)
|
|
;; (export "foo" (func $foo)))
|
|
;; STDOUT
|