From 10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:41:41 +0200 Subject: Merging upstream version 1.70.0+dfsg2. Signed-off-by: Daniel Baumann --- vendor/wasm-bindgen/tests/wasm/rethrow.rs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vendor/wasm-bindgen/tests/wasm/rethrow.rs (limited to 'vendor/wasm-bindgen/tests/wasm/rethrow.rs') diff --git a/vendor/wasm-bindgen/tests/wasm/rethrow.rs b/vendor/wasm-bindgen/tests/wasm/rethrow.rs new file mode 100644 index 000000000..d2a0ffafd --- /dev/null +++ b/vendor/wasm-bindgen/tests/wasm/rethrow.rs @@ -0,0 +1,28 @@ +use wasm_bindgen::prelude::*; +use wasm_bindgen_test::*; + +#[wasm_bindgen(module = "tests/wasm/rethrow.js")] +extern "C" { + fn call_throw_one(); + fn call_ok(); +} + +#[wasm_bindgen_test] +fn err_works() { + call_throw_one(); +} + +#[wasm_bindgen] +pub fn throw_one() -> Result { + Err(1.into()) +} + +#[wasm_bindgen_test] +fn ok_works() { + call_ok(); +} + +#[wasm_bindgen] +pub fn nothrow() -> Result { + Ok(1) +} -- cgit v1.2.3