summaryrefslogtreecommitdiff
path: root/test/metadce/tag.wast
blob: 527e57d33b5a43bec2bfd5dddf35d02a57561899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
  (import "env" "imported_tag" (tag $t0))
  (tag $t1)
  (export "test" (func $test))

  (func $test
    (try
      (do
        (throw $t0)
      )
      (catch $t1)
    )
  )
)