aboutsummaryrefslogtreecommitdiff
path: root/test/test_stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_stream.cpp')
-rw-r--r--test/test_stream.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_stream.cpp b/test/test_stream.cpp
index c9fccac..7128a9a 100644
--- a/test/test_stream.cpp
+++ b/test/test_stream.cpp
@@ -77,5 +77,9 @@ int main() {
Bits d(std::move(c));
printf("%s\n", get_hex(b).c_str());
print(b, b.size());
+ Bits e(4);
+ e.set(0);
+ e.set(1);
+ print(e, e.size());
return 0;
}