summaryrefslogtreecommitdiff
path: root/test/multi-table.wast.from-wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/multi-table.wast.from-wast')
-rw-r--r--test/multi-table.wast.from-wast11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/multi-table.wast.from-wast b/test/multi-table.wast.from-wast
index 9d1842b70..f60bab8cb 100644
--- a/test/multi-table.wast.from-wast
+++ b/test/multi-table.wast.from-wast
@@ -4,11 +4,18 @@
(elem (table $t1) (i32.const 0) func $f)
(table $t2 3 3 funcref)
(elem (table $t2) (i32.const 0) func $f)
- (elem (table $t2) (i32.const 1) func $f $g)
+ (elem $activeNonZeroOffset (table $t2) (i32.const 1) func $f $g)
+ (elem $passive func $f $g)
+ (elem declare func $h)
(func $f
- (nop)
+ (drop
+ (ref.func $h)
+ )
)
(func $g
(nop)
)
+ (func $h
+ (nop)
+ )
)