aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2018-07-13 14:50:11 -0400
committerDeterminant <ted.sybil@gmail.com>2018-07-13 14:50:11 -0400
commitf786c5fcc65722db13bb3c024b825e2ae5de46ee (patch)
tree33551ab56e696ca89f31040a9192d920666182e7 /test
parentd8e500b2d785b6c8e12ceb25efe68c32aad46a8b (diff)
...
Diffstat (limited to 'test')
-rw-r--r--test/test_stream.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_stream.cpp b/test/test_stream.cpp
index 0e05146..c9fccac 100644
--- a/test/test_stream.cpp
+++ b/test/test_stream.cpp
@@ -73,6 +73,8 @@ int main() {
s << a;
Bits b;
s >> b;
+ Bits c(b);
+ Bits d(std::move(c));
printf("%s\n", get_hex(b).c_str());
print(b, b.size());
return 0;