mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-21 20:50:51 +00:00
18 lines
235 B
Rust
18 lines
235 B
Rust
#![feature(use_extern_macros)]
|
|
|
|
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();
|
|
}
|