| 2020 | |
| 2021 | template <typename... Args> |
| 2022 | void print_error(const char* file, int line, const char* format, |
| 2023 | const Args&... args) { |
| 2024 | fmt::print("{}: {}: ", file, line); |
| 2025 | fmt::print(format, args...); |
| 2026 | } |
| 2027 | |
| 2028 | TEST(format_test, unpacked_args) { |
| 2029 | EXPECT_EQ("0123456789abcdefg", |