mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 20:20:52 +00:00
9 lines
133 B
Rust
9 lines
133 B
Rust
|
#![feature(use_extern_macros)]
|
||
|
|
||
|
extern crate wasm_bindgen;
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen(nonsense)]
|
||
|
pub fn foo() {}
|