summaryrefslogtreecommitdiff
path: root/test/typecheck/delegate.txt
blob: 419ecd4a897e8407403266bd7e48680a4e20507e (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
30
31
32
33
34
;;; TOOL: wat2wasm
;;; ARGS: --enable-exceptions
(module
  (tag $e)
  (func
    try
      try
        try
          throw $e
        delegate 0
      catch $e
      end
    catch $e
    end)

  (func
    try
      block
        try
          throw $e
        delegate 1
      end
    catch $e
    end)

  (func
    try
      block
        try
          throw $e
        delegate 2
      end
    catch $e
    end))