1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 13:52:59 +01:00
actix-net/actix-macros/tests/trybuild/main-03-fn-params.rs

7 lines
107 B
Rust
Raw Normal View History

2021-02-02 03:07:58 +01:00
#[actix_rt::main]
async fn main2(_param: bool) {
futures_util::future::ready(()).await
}
fn main() {}