1 2 3 4 5 6 7
use async_runtime::LocalSpawner; fn assert_send_sync<T: Send + Sync>() {} fn main() { assert_send_sync::<LocalSpawner>(); }