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

12 lines
162 B
Rust
Raw Normal View History

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