summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/tests/wasm/arg_names.rs
blob: e6f044ee152fc848f11b35c6178baf19048e3936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use wasm_bindgen::prelude::*;
use wasm_bindgen_test::*;

#[wasm_bindgen(module = "tests/wasm/arg_names.js")]
extern "C" {
    fn js_arg_names();
}

#[wasm_bindgen]
pub fn fn_with_many_args(_a: i32, _b: i32, _c: i32, _d: i32) {}

#[wasm_bindgen_test]
fn rust_arg_names() {
    js_arg_names();
}