| 553 | |
| 554 | template <typename... Args> |
| 555 | void check_format_string_regression(fmt::string_view s, const Args&... args) { |
| 556 | fmt::sprintf(s, args...); |
| 557 | } |
| 558 | |
| 559 | TEST(printf_test, check_format_string_regression) { |
| 560 | check_format_string_regression("%c%s", 'x', ""); |