;;; TOOL: run-objdump
;;; FLAGS: --dump-verbose --enable-exceptions
(module
  (except $ex i32)
  (func (result i32)
    try $try1 (result i32)
      nop
      i32.const 7
    catch $ex
      nop
    catch_all
      rethrow $try1
    end
  )
)
(;; STDOUT ;;;

try-details.wasm:	file format wasm 0x1

Section Details:

Type:
 - type[0] () -> i32
Function:
 - func[0] sig=0
Custom:
 - name: "exception"
 - except[0] (i32)

Code Disassembly:

000025 func[0]:
 000027: 06 7f                      | try i32
 000029: 01                         |   nop
 00002a: 41 07                      |   i32.const 7
 00002c: 07 00                      | catch 0
 00002e: 01                         |   nop
 00002f: 0a                         | catch_all
 000030: 09 00                      |   rethrow 0
 000032: 0b                         | end
 000033: 0b                         | end
;;; STDOUT ;;)
