llvm/libcxx/test/std/utilities/format/format.syn/format_to_n_result.pass.cpp

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: c++03, c++11, c++14, c++17

// <format>

// struct format_to_n_result

// [format.syn]/1
// The class template format_to_n_result has the template parameters, data
// members, and special members specified above. It has no base classes or
// members other than those specified.

#include <format>

#include <cassert>
#include <concepts>
#include <iterator>

#include "test_macros.h"

template <class CharT>
constexpr void test() {
  std::format_to_n_result<CharT*> v{nullptr, std::iter_difference_t<CharT*>{42}};

  auto [out, size] = v;
  static_assert(std::same_as<decltype(out), CharT*>);
  assert(out == v.out);
  static_assert(std::same_as<decltype(size), std::iter_difference_t<CharT*>>);
  assert(size == v.size);
}

constexpr bool test() {
  test<char>();
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
  test<wchar_t>();
#endif
  return true;
}

int main(int, char**) {
  assert(test());
  static_assert(test());

  return 0;
}