blob: ec66c2f5b390de3b5053fe3fc68567c222c022ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(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") and not
;; to the modified start that has the third module's content merged in.
(call $start)
(call $start)
)
)
|