mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
12 lines
129 B
Rust
12 lines
129 B
Rust
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
struct A;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
#[wasm_bindgen]
|
||
|
pub fn foo(a: A);
|
||
|
}
|
||
|
|
||
|
fn main() {}
|