diff options
Diffstat (limited to 'test/lit')
-rw-r--r-- | test/lit/passes/type-merging-shared.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/passes/type-merging-shared.wast b/test/lit/passes/type-merging-shared.wast index 2457cd572..e02815079 100644 --- a/test/lit/passes/type-merging-shared.wast +++ b/test/lit/passes/type-merging-shared.wast @@ -79,11 +79,11 @@ (module ;; Shared and unshared basic heap types similarly cannot be merged. ;; CHECK: (rec - ;; CHECK-NEXT: (type $A' (shared (struct (field anyref)))) + ;; CHECK-NEXT: (type $A' (struct (field anyref))) - ;; CHECK: (type $A (shared (struct (field (ref null (shared any)))))) - (type $A (shared (struct (ref null (shared any))))) - (type $A' (shared (struct (ref null any)))) + ;; CHECK: (type $A (struct (field (ref null (shared any))))) + (type $A (struct (ref null (shared any)))) + (type $A' (struct (ref null any))) ;; CHECK: (type $2 (func)) |