summaryrefslogtreecommitdiff
path: root/test/lit/merge/start.wat.second
blob: 0f00feb7a6f686ce4139540f3795481e8d91b8b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(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)
  )
)