1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-29 17:29:19 +02:00
Files
actix-net/actix-macros/tests/trybuild/test-04-system-path.rs
2025-08-26 08:25:35 +01:00

13 lines
211 B
Rust

#![allow(unused_imports)]
mod system {
pub use actix_rt::System as MySystem;
}
#[actix_rt::test(system = "system::MySystem")]
async fn my_test() {
futures_util::future::ready(()).await
}
fn main() {}