summaryrefslogtreecommitdiff
path: root/test/regress/regress-19.txt
blob: 70780e1799008afbd15af63bd7de8bcc0f64ce9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;; TOOL: run-roundtrip
;;; ARGS: --inline-export --stdout
(module
  (import "foo" "bar" (func))
  (export "baz" (func 0))
)
(;; STDOUT ;;;
(module
  (type (;0;) (func))
  (import "foo" "bar" (func (;0;) (type 0)))
  (export "baz" (func 0)))
;;; STDOUT ;;)