cheep-crator-2/vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.rs

12 lines
129 B
Rust

use wasm_bindgen::prelude::*;
struct A;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen]
pub fn foo(a: A);
}
fn main() {}