blob: 0f00feb7a6f686ce4139540f3795481e8d91b8b7 [file] [log] [blame] [edit]
(module
(start $start)
(func $start (export "start")
(drop
(i32.const 1)
)
)
(func $user (export "user")
;; These calls must go to the function $start here (with body "1").
(call $start)
(call $start)
)
)