blob: f2d5cf6250b4326ec66b562c727cec2d8af8eb6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(module
(type $0 (func))
(import "env" "imported_tag" (tag $t0))
(tag $t1)
(export "test" (func $test))
(func $test (type $0)
(try
(do
(throw $t0)
)
(catch $t1
)
)
)
)
|