summaryrefslogtreecommitdiff
path: root/test/passes/asyncify_pass-arg=asyncify-verbose.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/asyncify_pass-arg=asyncify-verbose.wast')
-rw-r--r--test/passes/asyncify_pass-arg=asyncify-verbose.wast17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/passes/asyncify_pass-arg=asyncify-verbose.wast b/test/passes/asyncify_pass-arg=asyncify-verbose.wast
new file mode 100644
index 000000000..1b1ebf235
--- /dev/null
+++ b/test/passes/asyncify_pass-arg=asyncify-verbose.wast
@@ -0,0 +1,17 @@
+(module
+ (memory 1 2)
+ (import "env" "import" (func $import))
+ (func $calls-import
+ (call $import)
+ )
+ (func $calls-calls-import
+ (call $calls-import)
+ )
+ (func $calls-calls-calls-import
+ (call $calls-calls-import)
+ )
+ (func $nothing
+ (nop)
+ )
+)
+