1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-06 20:31:05 +00:00

13 lines
175 B
Rust
Raw Normal View History

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>() {}
fn main() {}