summaryrefslogtreecommitdiff
path: root/test/lit/validation
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/validation')
-rw-r--r--test/lit/validation/supertypes-no-gc.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/validation/supertypes-no-gc.wast b/test/lit/validation/supertypes-no-gc.wast
index eeacccfaf..786289c00 100644
--- a/test/lit/validation/supertypes-no-gc.wast
+++ b/test/lit/validation/supertypes-no-gc.wast
@@ -5,8 +5,8 @@
;; CHECK: all used types should be allowed
(module
- (type $f1 (func_subtype func))
- (type $f2 (func_subtype $f1))
+ (type $f1 (sub (func)))
+ (type $f2 (sub $f1 (func)))
(func $test (type $f2)
(unreachable)