1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-11 22:56:06 +00:00

16 lines
203 B
Rust
Raw Normal View History

2019-01-02 08:35:01 -08:00
#![crate_type = "rlib"]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
struct A;
#[wasm_bindgen]
impl A {
#[wasm_bindgen(method)]
#[wasm_bindgen(method)]
pub fn foo() {
}
}