1 2 3 4 5 6 7 8 9 10 11
#![cfg(feature = "actix")] #[caelix::main] async fn runtime_entrypoint() -> std::io::Result<()> { Ok(()) } #[test] fn actix_feature_reexports_runtime_macro() { runtime_entrypoint().unwrap(); }