summaryrefslogtreecommitdiff
path: root/test/roundtrip/try-delegate.txt
blob: 783e29c68fa4ecdf8df5deffff168ee66bce40f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --enable-exceptions --debug-names
(module
  (func
    try
      try
        nop
      delegate 0
      try
        nop
      delegate 0
    catch_all
    end
  )
)
(;; STDOUT ;;;
(module
  (type (;0;) (func))
  (func (;0;) (type 0)
    try  ;; label = @1
      try  ;; label = @2
        nop
      delegate 0
      try  ;; label = @2
        nop
      delegate 0
    catch_all
    end))
;;; STDOUT ;;)