summaryrefslogtreecommitdiff
path: root/test/lit/validation/nullref-no-gc.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/validation/nullref-no-gc.wast')
-rw-r--r--test/lit/validation/nullref-no-gc.wast11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/lit/validation/nullref-no-gc.wast b/test/lit/validation/nullref-no-gc.wast
new file mode 100644
index 000000000..27560b3ff
--- /dev/null
+++ b/test/lit/validation/nullref-no-gc.wast
@@ -0,0 +1,11 @@
+;; Test that nullref without GC is a validation error.
+
+;; RUN: not wasm-opt %s -all --disable-gc 2>&1 | filecheck %s
+
+;; CHECK: all used types should be allowed
+
+(module
+ (func $test
+ (local nullref)
+ )
+)