From 6a555820bd80de900e7e8ebb7b38b3aadf0fe9bc Mon Sep 17 00:00:00 2001 From: zapashcanon Date: Fri, 11 Oct 2024 19:31:53 +0200 Subject: [PATCH] Int64 is not final --- wasm/imports.wat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm/imports.wat b/wasm/imports.wat index 18e9cf054..6da1a0b53 100644 --- a/wasm/imports.wat +++ b/wasm/imports.wat @@ -1,6 +1,6 @@ (module (type $Float (sub (struct (field (mut f64))))) - (type $Int64 (struct (field (mut i64)))) + (type $Int64 (sub (struct (field (mut i64))))) (type $String (sub (array (mut i8)))) (type $Array (sub (array (mut (ref eq))))) (type $Gen_block (sub (array (mut (ref eq)))))