1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-24 06:00:51 +00:00

16 lines
211 B
Rust
Raw Normal View History

#![feature(use_extern_macros)]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn foo() -> &u32 {}
#[wasm_bindgen]
extern "C" {
fn foo(Foo(x): Foo);
fn foo() -> &u32;
}