feat update

This commit is contained in:
tqcq
2024-03-21 14:31:43 +08:00
parent bd0f7bd208
commit 2bb58ab55a
4 changed files with 83 additions and 2 deletions

9
src/exec/just_test.cc Normal file
View File

@@ -0,0 +1,9 @@
#include "sled/ref_count.h"
#include <gtest/gtest.h>
#include <sled/exec/just.h>
TEST(just, basic)
{
sled::just_sender<int> sender = sled::just(1);
auto op = connect(sender, sled::cout_receiver{});
}