Rename "wast" to "wat" in filetests too.

This commit is contained in:
Dan Gohman
2017-11-02 07:46:18 -07:00
parent c30116d948
commit 04660ae8cc
5 changed files with 0 additions and 0 deletions

10
filetests/call.wat Normal file
View File

@@ -0,0 +1,10 @@
(module
(func $main (local i32)
(set_local 0 (i32.const 0))
(drop (call $inc))
)
(func $inc (result i32)
(i32.const 1)
)
(start $main)
)