denyhosts/clamav/libclamav_rust/.cargo/vendor/wasm-bindgen-macro/ui-tests/structural-and-final.rs

12 lines
162 B
Rust
Raw Permalink Normal View History

2023-01-14 18:28:39 +08:00
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
type Foo;
#[wasm_bindgen(method, structural, final)]
fn bar(this: &Foo);
}
fn main() {}