oden/third-party/vendor/wasm-bindgen/tests/wasm/macro_rules.rs
2024-03-08 11:03:01 -08:00

12 lines
358 B
Rust

//! This tests that the `wasm_bindgen` macro produces code that compiles for this use case.
//! `cargo test --target wasm32-unknown-unknown` will not run if this test breaks.
use wasm_bindgen::prelude::*;
macro_rules! my_export {
($i: ident, $s: ty) => {
#[wasm_bindgen]
pub fn $i(_: $s) {}
};
}
my_export!(should_compile, &[i32]);