Closed
Description
clippy 0.0.212 (1b89724 2019-01-15)
I work with wasm_bindgen and for this function Clippy warns missing_inline_in_public_items
#[wasm_bindgen(start)]
pub fn run() {
If I add #[inline], the "wasm-pack build --target no-modules" returns an
error: "export run
not found"
#[inline]
#[wasm_bindgen(start)]
pub fn run() {