summaryrefslogtreecommitdiff
path: root/test/roundtrip/inline-export-func.txt
blob: 917b8c099c034b90cab4c149111ec08d460d755d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --inline-export
(module
  (func $foo (param i32)
    nop)
  (export "foo" (func $foo)))
(;; STDOUT ;;;
(module
  (type (;0;) (func (param i32)))
  (func (;0;) (export "foo") (type 0) (param i32)
    nop))
;;; STDOUT ;;)