| 299 | FMT_BEGIN_NAMESPACE |
| 300 | template <typename Char> struct formatter<test_struct, Char> { |
| 301 | FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> decltype(ctx.begin()) { |
| 302 | return ctx.begin(); |
| 303 | } |
| 304 | |
| 305 | auto format(test_struct, format_context& ctx) const -> decltype(ctx.out()) { |
| 306 | return copy("test", ctx.out()); |