mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-27 03:55:20 +03: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();
|
|
}
|