wasm-bindgen/crates/macro/ui-tests/import-local.rs

14 lines
172 B
Rust
Raw Normal View History

use wasm_bindgen::prelude::*;
#[wasm_bindgen(module = "./foo.js")]
extern {
fn wut();
}
#[wasm_bindgen(module = "../foo.js")]
extern {
fn wut2();
}
fn main() {}