wasm-bindgen/crates/macro/ui-tests/structural-and-final.rs

12 lines
176 B
Rust
Raw Normal View History

extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
type Foo;
2018-11-09 18:59:48 +03:00
#[wasm_bindgen(method, structural, final)]
fn bar(this: &Foo);
}