diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/passes/roundtrip.txt | 4 | ||||
-rw-r--r-- | test/passes/roundtrip.wast | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/passes/roundtrip.txt b/test/passes/roundtrip.txt index bcd8b186a..fa1c44984 100644 --- a/test/passes/roundtrip.txt +++ b/test/passes/roundtrip.txt @@ -5,3 +5,7 @@ (unreachable) ) ) +(module + (memory $ 1 1) + (table $ 0 funcref) +) diff --git a/test/passes/roundtrip.wast b/test/passes/roundtrip.wast index f562ba779..7d1eb174b 100644 --- a/test/passes/roundtrip.wast +++ b/test/passes/roundtrip.wast @@ -9,3 +9,8 @@ (nop) ) ) + +(module + (memory 1 1) + (table 0 funcref) +) |