summaryrefslogtreecommitdiff
path: root/test/anyref.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/anyref.wast')
-rw-r--r--test/anyref.wast18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/anyref.wast b/test/anyref.wast
deleted file mode 100644
index d617d3f42..000000000
--- a/test/anyref.wast
+++ /dev/null
@@ -1,18 +0,0 @@
-(module
- (memory 1 1)
- (import "env" "test1" (func $test1 (param anyref) (result anyref)))
- (import "env" "test2" (global $test2 anyref))
- (export "test1" (func $test1 (param anyref) (result anyref)))
- (export "test2" (global $test2))
- (func $anyref_test (param $0 anyref) (result anyref)
- (local $1 anyref)
- (local.set $1
- (call $test1
- (local.get $0)
- )
- )
- (return
- (local.get $1)
- )
- )
-)