1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-24 22:11:06 +00:00
2019-01-02 08:35:05 -08:00

18 lines
228 B
Rust

#![crate_type = "rlib"]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen(x)]
pub fn foo() {}
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(y)]
fn bar();
#[wasm_bindgen { }]
fn bar();
}