diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_stream.cpp | 2 |
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; |