Fix move constructor (#1844)

This commit is contained in:
Victor Zverovich
2020-09-01 08:16:53 -07:00
parent 69902c1787
commit 6cccdc24bc
2 changed files with 9 additions and 1 deletions

View File

@@ -287,6 +287,12 @@ TEST(BufferedFileTest, Fileno) {
EXPECT_READ(copy, FILE_CONTENT);
}
TEST(OStreamTest, Move) {
fmt::ostream out = fmt::output_file("test-file");
fmt::ostream moved(std::move(out));
moved.print("hello");
}
TEST(OStreamTest, Print) {
fmt::ostream out = fmt::output_file("test-file");
out.print("The answer is {}.\n", 42);