diff options
Diffstat (limited to 'test/newsyntax.wast')
-rw-r--r-- | test/newsyntax.wast | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/newsyntax.wast b/test/newsyntax.wast new file mode 100644 index 000000000..aba263d24 --- /dev/null +++ b/test/newsyntax.wast @@ -0,0 +1,10 @@ +(module + (import "env" "table" (table 9 9 anyfunc)) + (func "call_indirect" + (drop + (call_indirect (param i32) (param f64) (result i32) (i32.const 10) (f64.const 20) (i32.const 30)) + ) + (call_indirect (i32.const 1)) + ) +) + |