Improve compiling (#140)

This commit is contained in:
ykiko
2025-06-17 22:07:31 +08:00
committed by GitHub
parent 9939f57acd
commit a3075f86c0
35 changed files with 418 additions and 384 deletions

View File

@@ -88,7 +88,7 @@ TEST(Async, TaskCancelRecursively) {
auto task1 = [&]() -> async::Task<> {
x = 1;
co_await async::sleep(300);
println("Task1 done");
clice::println("Task1 done");
x = 2;
};