diff options
Diffstat (limited to 'test/multi-table.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/multi-table.wast.fromBinary.noDebugInfo | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/multi-table.wast.fromBinary.noDebugInfo b/test/multi-table.wast.fromBinary.noDebugInfo new file mode 100644 index 000000000..00c3a64cb --- /dev/null +++ b/test/multi-table.wast.fromBinary.noDebugInfo @@ -0,0 +1,15 @@ +(module + (type $none_=>_none (func)) + (import "a" "b" (table $timport$0 1 10 funcref)) + (elem (table $timport$0) (i32.const 0) func $0) + (table $0 3 3 funcref) + (elem (table $0) (i32.const 0) func $0) + (elem (table $0) (i32.const 1) func $0 $1) + (func $0 + (nop) + ) + (func $1 + (nop) + ) +) + |