1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-22 12:42:14 +00:00

13 lines
189 B
Rust
Raw Normal View History

extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen(start)]
pub fn foo() {}
#[wasm_bindgen(start)]
pub fn foo2(x: u32) {}
#[wasm_bindgen(start)]
pub fn foo3<T>() {}