Skip to content

Commit

Permalink
Enable more proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Oct 9, 2024
1 parent f08dd9e commit aa302aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/all/traps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit aa302aa

Please sign in to comment.