diff options
Diffstat (limited to 'test/multi-table.wast')
-rw-r--r-- | test/multi-table.wast | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/multi-table.wast b/test/multi-table.wast index 07c1e0077..378d4018a 100644 --- a/test/multi-table.wast +++ b/test/multi-table.wast @@ -7,8 +7,13 @@ ;; add to $t2 (elem (table $t2) (i32.const 0) func $f) - (elem (table $t2) (offset (i32.const 1)) func $f $g) + (elem $activeNonZeroOffset (table $t2) (offset (i32.const 1)) func $f $g) - (func $f) + (elem $passive func $f $g) + (elem $empty func) + (elem $declarative declare func $h) + + (func $f (drop (ref.func $h))) (func $g) + (func $h) )
\ No newline at end of file |