1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-05-13 14:21:22 +00:00

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() {}