mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-24 14:42:35 +03:00
7ecf4aae87
Rustfmt all the things!
19 lines
378 B
Rust
19 lines
378 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 "C" {
|
|
fn assert_next_undefined();
|
|
fn assert_next_ten();
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn works() {
|
|
assert_next_undefined();
|
|
a::test();
|
|
assert_next_ten();
|
|
b::test();
|
|
}
|