diff options
Diffstat (limited to 'test/ctor-eval')
-rw-r--r-- | test/ctor-eval/gc-2.wast | 2 | ||||
-rw-r--r-- | test/ctor-eval/gc.wast | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/test/ctor-eval/gc-2.wast b/test/ctor-eval/gc-2.wast index 114254d3f..731f70468 100644 --- a/test/ctor-eval/gc-2.wast +++ b/test/ctor-eval/gc-2.wast @@ -1,5 +1,5 @@ (module - (type $struct (struct_subtype (field i32) data)) + (type $struct (sub (struct (field i32)))) (import "import" "import" (func $import (param anyref))) diff --git a/test/ctor-eval/gc.wast b/test/ctor-eval/gc.wast index 965f6f38a..46ce6b49a 100644 --- a/test/ctor-eval/gc.wast +++ b/test/ctor-eval/gc.wast @@ -1,5 +1,5 @@ (module - (type $struct (struct_subtype (field i32) data)) + (type $struct (sub (struct (field i32)))) (import "import" "import" (func $import (param anyref))) @@ -62,4 +62,3 @@ ) ) ) - |