diff options
Diffstat (limited to 'vendor/wasm-bindgen-macro/ui-tests/start-function.rs')
-rw-r--r-- | vendor/wasm-bindgen-macro/ui-tests/start-function.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/vendor/wasm-bindgen-macro/ui-tests/start-function.rs b/vendor/wasm-bindgen-macro/ui-tests/start-function.rs index 65ad90bf2..6bc94c3be 100644 --- a/vendor/wasm-bindgen-macro/ui-tests/start-function.rs +++ b/vendor/wasm-bindgen-macro/ui-tests/start-function.rs @@ -1,33 +1,33 @@ use wasm_bindgen::prelude::*; #[wasm_bindgen(start)] -pub fn foo() {} +fn foo() {} #[wasm_bindgen(start)] -pub fn foo2(x: u32) {} +fn foo2(x: u32) {} #[wasm_bindgen(start)] -pub fn foo3<T>() {} +fn foo3<T>() {} #[wasm_bindgen(start)] -pub fn foo4() -> Result<(), JsValue> { Ok(()) } +fn foo4() -> Result<(), JsValue> { Ok(()) } #[wasm_bindgen(start)] -pub fn foo5() -> Result<JsValue, ()> { Err(()) } +fn foo5() -> Result<JsValue, ()> { Err(()) } #[wasm_bindgen(start)] -pub fn foo6() -> Result<JsValue, JsValue> { Ok(JsValue::from(1u32)) } +fn foo6() -> Result<JsValue, JsValue> { Ok(JsValue::from(1u32)) } #[wasm_bindgen(start)] -pub async fn foo_async1() {} +async fn foo_async1() {} #[wasm_bindgen(start)] -pub async fn foo_async2() -> Result<(), JsValue> { Ok(()) } +async fn foo_async2() -> Result<(), JsValue> { Ok(()) } #[wasm_bindgen(start)] -pub async fn foo_async3() -> Result<JsValue, ()> { Err(()) } +async fn foo_async3() -> Result<JsValue, ()> { Err(()) } #[wasm_bindgen(start)] -pub async fn foo_async4() -> Result<JsValue, JsValue> { Ok(JsValue::from(1u32)) } +async fn foo_async4() -> Result<JsValue, JsValue> { Ok(JsValue::from(1u32)) } fn main() {} |