12 lines
162 B
Rust
12 lines
162 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen]
|
|
extern "C" {
|
|
type Foo;
|
|
|
|
#[wasm_bindgen(method, structural, final)]
|
|
fn bar(this: &Foo);
|
|
}
|
|
|
|
fn main() {}
|