mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-18 23:41:45 +03:00
d5b81595ec
First added in #161 this never ended up panning out, so let's remove the experimental suport which isn't actually used by anything today and hold off on any other changes until an RFC happens.
19 lines
374 B
Rust
19 lines
374 B
Rust
use wasm_bindgen::prelude::*;
|
|
use wasm_bindgen_test::*;
|
|
use wasm_bindgen_test_crate_a as a;
|
|
use wasm_bindgen_test_crate_b as b;
|
|
|
|
#[wasm_bindgen(module = "tests/wasm/duplicate_deps.js")]
|
|
extern {
|
|
fn assert_next_undefined();
|
|
fn assert_next_ten();
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn works() {
|
|
assert_next_undefined();
|
|
a::test();
|
|
assert_next_ten();
|
|
b::test();
|
|
}
|