1 2 3 4 5 6 7 8 9 10 11 12
// we don't actually use #![no_std] to be able to compile this. // make sure to add --features no_std. use microasync::sync; fn main() { for _ in 0..10000000 { sync(test()); } } async fn test() {}