From aa302aa659fb72f7217c92fd5aaea0efea199787 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 9 Oct 2024 08:42:16 -0700 Subject: [PATCH] Enable more proposals --- tests/all/traps.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/all/traps.rs b/tests/all/traps.rs index 1bc40ab31d35..8601b6af416d 100644 --- a/tests/all/traps.rs +++ b/tests/all/traps.rs @@ -1743,6 +1743,7 @@ fn tail_call_to_imported_function_in_start_function() -> Result<()> { fn return_call_ref_to_imported_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true); + config.wasm_function_references(true); let engine = Engine::new(&config)?; let module = Module::new( @@ -1772,6 +1773,7 @@ fn return_call_ref_to_imported_function() -> Result<()> { fn return_call_indirect_to_imported_function() -> Result<()> { let mut config = Config::new(); config.wasm_tail_call(true); + config.wasm_function_references(true); let engine = Engine::new(&config)?; let module = Module::new(