summaryrefslogtreecommitdiff
path: root/test/break-within-catch.wasm.fromBinary
blob: 82ab6e71783edcb2c1477fb20f9a37eaf1eeca1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(module
 (type $none_=>_none (func))
 (func $0
  (block $label$2
   (try
    (do
     (nop)
    )
    (catch
     (drop
      (pop exnref)
     )
     (br $label$2)
    )
   )
  )
 )
)